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
Expected behavior The combination of keys should work similar to the manual entry of combination of keys
Actual behavior Tab and Shift+Tab is not coming back to the same control
Steps to replicate
const { openBrowser, goto, press, inputField, focus, write } = require('taiko'); (async () => { try { await openBrowser({headless:false}); await goto("cleartrip.com"); await write("Delhi",inputField({"placeHolder":"Any worldwide city or airport"})); await press("Tab"); await press("Shift","Tab"); await write("Bengaluru"); } catch (e) { console.error(e); } finally { await closeBrowser(); } })();
Blocks #192 Version
499249fb2a904ee4dc4eb83976d6d1905a3edd07
The text was updated successfully, but these errors were encountered:
The expected syntax is await press(["Shift","Tab"])
await press(["Shift","Tab"])
Sorry, something went wrong.
No branches or pull requests
Expected behavior
The combination of keys should work similar to the manual entry of combination of keys
Actual behavior
Tab and Shift+Tab is not coming back to the same control
Steps to replicate
The text was updated successfully, but these errors were encountered: