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
If you use #8 , you can get keydown/keyup to work again, but then you'll get this error:
keydown/keyup
define(function (require) { var tdd = require('intern!tdd'); tdd.suite('recorder-generated suite', function () { tdd.test('Test 1', function () { return this.remote .get('https://www.google.com/#q=puppies&*') .findByXpath('id("lst-ib")') .moveMouseTo(413, 21) .clickMouseButton(0) .pressKeys('puppies'); }); }); });
Note the character. This should be pressKeys(keys.ENTER) or pressKeys(keys.RETURN), I believe, based on https://theintern.github.io/leadfoot/module-leadfoot_keys.html .
pressKeys(keys.ENTER)
pressKeys(keys.RETURN)
The text was updated successfully, but these errors were encountered:
Technically, it looks like UP/DOWN/LEFT/RIGHT/BACKSPACE result in the strange character too, not just ENTER.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
If you use #8 , you can get
keydown/keyup
to work again, but then you'll get this error:Note the
character. This should bepressKeys(keys.ENTER)
orpressKeys(keys.RETURN)
, I believe, based on https://theintern.github.io/leadfoot/module-leadfoot_keys.html .The text was updated successfully, but these errors were encountered: