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
This causes the browser not to fire its native focus and blur events, which then causes the driver to fallback to its own polyfill behaviors (which in essence can cause other issues).
It's always better for the browser to think it's in focus so that it natively fires all of its default events. All we have to do is call win.focusOnWebView() and even though the window is rendered offscreen, it will think it's correctly focused at all times.
The text was updated successfully, but these errors were encountered:
This causes the browser not to fire its native
focus
andblur
events, which then causes the driver to fallback to its own polyfill behaviors (which in essence can cause other issues).It's always better for the browser to think it's in focus so that it natively fires all of its default events. All we have to do is call
win.focusOnWebView()
and even though the window is rendered offscreen, it will think it's correctly focused at all times.The text was updated successfully, but these errors were encountered: