We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
click
clickOn
wd
*IsVisible
*IsDisplayed
close
quit
setCookie
path: '/'
setCookieValue
path
secure
assert.isFoo
assertIsFoo
getElement
getElementOrNull
assert.*
assert.httpStatus
assertStatusCode
getStatusCode
-wd
The text was updated successfully, but these errors were encountered:
@jkrems is this still all true?
Sorry, something went wrong.
I think most of these remain. I'm not 100% sure though.
No branches or pull requests
click
had to becomeclickOn
because the former is already awd
method*IsVisible
became*IsDisplayed
because that's howwd
calls it. Not sure if we should ignore thisclose
("close session") had to becomequit
becausewd
already has aclose
("close current window")setCookie
doesn't defaultpath: '/'
. ButsetCookieValue
exists with defaults forpath
andsecure
wd
only supports top-level custom methods, soassert.isFoo
becameassertIsFoo
getElement
throws if the element doesn't exist,getElementOrNull
returns null in that caseassert.*
,assert.httpStatus
becameassertStatusCode
to be consistent withgetStatusCode
-wd
uses a different algorithm for comparing urls with "fuzzy query argument order". Instead of building a regex, it compares the parsed urls.The text was updated successfully, but these errors were encountered: