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 Apr 12, 2024. It is now read-only.
In scenario tests, if you navigate more than once, sometimes it doesn't change the browser's url (maybe because it's done asynchronously, so sometimes it's too delayed)
describe('test',function(){it('should navigate the browser - once',function(){browser().navigateTo('../../app/index.html#/phones/nexus-s');expect(browser().location().hash()).toBe("/phones/nexus-s");});it('should navigate the browser - once',function(){browser().navigateTo('../../app/index.html');browser().navigateTo('#/phones/nexus-s');expect(browser().location().hash()).toBe("/phones/nexus-s");});});Thefirsttestalwayspasses...Thesecondonesometimesfailed(veryoften)...