RESOLVED FIXED 183230
Web Automation: script evaluations via WebDriver should have a user gesture indicator
https://bugs.webkit.org/show_bug.cgi?id=183230
Summary Web Automation: script evaluations via WebDriver should have a user gesture i...
Blaze Burg
Reported 2018-02-28 15:57:15 PST
Some JS/DOM APIs only work require a user gesture indicator. Since there is no real user input when running via WebDriver, these APIs can only be tested if WebDriver code has a synthetic user gesture indicator, or explicit checks for a user gesture indicator should also allow usage iff page->isControlledByAutomation(). It would be nice to do the first approach since only one source location is needed. However, it's possible via WebDriver to evaluate "async" JavaScript which calls a completion handler some arbitrary amount of time later. The naive approach to set a user gesture indicator would only allow gesture-requiring API calls that happen synchronously. So, we need to either set a user gesture indicator using non-RAII code, or audit every single check and add || page->isControlledByAutomation() to the condition.
Attachments
Proposed Fix (2.30 KB, patch)
2018-03-02 20:39 PST, Blaze Burg
aestes: review+
Blaze Burg
Comment 1 2018-02-28 15:58:58 PST
Blaze Burg
Comment 2 2018-02-28 16:06:52 PST
(In reply to Brian Burg from comment #0) > Some JS/DOM APIs only work require a user gesture indicator. Since there is > no real user input when running via WebDriver, these APIs can only be tested > if WebDriver code has a synthetic user gesture indicator, or explicit checks > for a user gesture indicator should also allow usage iff > page->isControlledByAutomation(). > > It would be nice to do the first approach since only one source location is > needed. However, it's possible via WebDriver to evaluate "async" JavaScript > which calls a completion handler some arbitrary amount of time later. The > naive approach to set a user gesture indicator would only allow > gesture-requiring API calls that happen synchronously. > > So, we need to either set a user gesture indicator using non-RAII code, or > audit every single check and add || page->isControlledByAutomation() to the > condition. Actually, it seems like DOMTimer and some other async code will forward the user gesture, so maybe using the UserGestureIndicator when evaluating the JS snippet would be enough.
Blaze Burg
Comment 3 2018-03-02 20:39:28 PST
Created attachment 334948 [details] Proposed Fix
Blaze Burg
Comment 4 2018-03-04 14:59:24 PST
Note You need to log in before you can comment on or make changes to this bug.