Reputation: 44
How do i press TAB key or ENTER key when i enter input text. The action that i wish to do is
Input Text xpath://input[@id='token-input-for_user'] test
Press Key xpath://input[@id='token-input-for_user'] TAB
the above solution does not work as after entering input text it again clicks again on the same field.
Upvotes: 0
Views: 4027
Reputation: 8322
This might work:
Press Keys //input[@id='token-input-for_user'] test+TAB
Upvotes: 2