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
{{ message }}
This repository was archived by the owner on Jul 29, 2024. It is now read-only.
I test in Chrome & Firefox. In Firefox (currently 34) the URL bar gets focus since the beginning of the test. I'm testing keyboard interaction with the app but pressing left/right via:
just moves the cursor in the URL bar instead of sending the action to the page. My onPrepare block:
onPrepare: functiononPrepare(){// TODO download results from API before tests, put them in some constant and use it in tests.// Disable animations so e2e tests run more quicklybrowser.addMockModule('disableNgAnimate',functiondisableNgAnimate(){angular.module('disableNgAnimate',[]).run(['$animate',function($animate){$animate.enabled(false);}]);});browser.driver.manage().window().setSize(1024,768);browser.get('/');},
The text was updated successfully, but these errors were encountered:
I test in Chrome & Firefox. In Firefox (currently 34) the URL bar gets focus since the beginning of the test. I'm testing keyboard interaction with the app but pressing
left
/right
via:just moves the cursor in the URL bar instead of sending the action to the page. My
onPrepare
block:The text was updated successfully, but these errors were encountered: