-
Notifications
You must be signed in to change notification settings - Fork 370
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
0.12.* - Timeout when typing char that does not exist #605
0.12.* - Timeout when typing char that does not exist #605
Conversation
Adds support for typing long pieces of text; like a paragraph.
@jmoody I appreciate the effort and initiative to fix this problem, but please don't merge this pull request. It is solving the problem in the wrong place. I would like some time to fix the true cause. |
These are the Scenarios [1] that are hanging indefinitely; they never finish. They were passing until ~ Nov 5th @ or around the 0.11.4 release or one of the pre-releases.
|
@krukow |
Thanks for the effort and research. We won't merge this pull request since we can fix the root cause instead (which was a bug in CalabashScript). Fixed with krukow/calabash-script@d7a7f2c |
Should be fixed in 0.11.5.pre3 - #630 Please reopen if you see fit. |
Motivation
This PR addresses #310 and #555 by adding a timeout to
uia_type_string
; cannot type more than 10 seconds. I added a options:timeout
argument tokeyboard_enter_text
to allow users who need to type exceptionally long pieces of text.This is 0.12.0 release because it changes keyboard_enter_text public API.
I also added some tests to get a better understanding of these two issues.