-
Notifications
You must be signed in to change notification settings - Fork 453
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
Need a way to enter combination keys #192
Comments
There are some issues with pressing key combinations. Some key combination works fine other there are a bunch of cases which does not work.
The CDP has limitations that it can control only page actions. Some of the combinations are os handled actions, not browser handled. |
It's ok to ignore OS handled actions. |
The decided syntax to press combinations is - |
There should be a way to enter the combination of keys like 'Shift + Tab' for the press function.
Currently, the below sequence of command is not actually doing the intended behavior of shift + tab
Press('Shift')
Press('Tab')
Expected behavior
A combination of shift + Tab is pressed so that the focus is on the previous element in the sequence.
Actual behavior
The focus is on the next element in the sequence.
Steps to reproduce
Versions
The text was updated successfully, but these errors were encountered: