You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
test_driver is only designed to work on the window context. Which is fine as many webdriver commands like moving pointers only makes sense there, but set_permission is often required also for workers to enable certain features there, e.g. service worker-specific showNotification() behind notification permission.
Perhaps we can:
Provide some way to tunnel the test_driver requests to the main thread as service_worker_test() does?
Or provide a way to run a script on the main window before starting the tests in the worker context?
The text was updated successfully, but these errors were encountered:
test_driver
is only designed to work on the window context. Which is fine as many webdriver commands like moving pointers only makes sense there, but set_permission is often required also for workers to enable certain features there, e.g. service worker-specificshowNotification()
behind notification permission.Perhaps we can:
service_worker_test()
does?The text was updated successfully, but these errors were encountered: