-
Notifications
You must be signed in to change notification settings - Fork 454
New issue
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
Upgrade gauge ts and chrome version #2730
Conversation
Signed-off-by: Zabil Cheriya Maliackal <[email protected]>
Signed-off-by: Zabil Cheriya Maliackal <[email protected]>
Signed-off-by: Zabil Cheriya Maliackal <[email protected]>
Signed-off-by: Zabil Cheriya Maliackal <[email protected]>
Signed-off-by: Zabil Cheriya Maliackal <[email protected]>
Signed-off-by: Zabil Cheriya Maliackal <[email protected]>
Signed-off-by: Zabil Cheriya Maliackal <[email protected]>
Check if chrome update fixes windows testing issue Refer #2732 (comment) Signed-off-by: Zabil Cheriya Maliackal <[email protected]>
@zabil Thank you for contributing to taiko. Your pull request has been labeled as a release candidate 🎉🎉. Merging this PR will trigger a release. Please bump up the version as part of this PR.Instructions to bump the version can found at CONTRIBUTING.md If the CONTRIBUTING.md file does not exist or does not include instructions about bumping up the version, please looks previous commits in git history to see what changes need to be done. |
Signed-off-by: Zabil Cheriya Maliackal <[email protected]>
@@ -184,7 +184,7 @@ const waitAndGetActionableElement = async (selector, force, checks = defaultChec | |||
actionableElement = elements[0]; | |||
return; | |||
} | |||
if (elementsLength !== elements.length) { | |||
if (elements && elementsLength !== elements.length) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Adding this to avoid undefined error on elements
@@ -2,7 +2,7 @@ | |||
<html> | |||
<body> | |||
|
|||
<iframe src="./HTMLElements.html" width="1440" height="900"> | |||
<iframe src="HTMLElements.html" width="800" height="600"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use a reasonably sized viewport
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fix typescript running issues on newer versions of node
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks great !!
Fixes #2732