angularjs - Protractor: .click().then().. failing in Firefox -
I am running a protractor test that is all in chrome, but one has failed in Firefox.
I am targeting a list of items and clicking on the first page that you should take to the next page.
This works fine in Chrome, but the page changes in Firefox and the expected failure
Page Item:
this.items = element. All (<) Below are snippets of my code. By.repeater ('item in item'));
Examination:
This should go to the next page while selecting the item (function), (pageObject.items.get (0) Click (). Then (function () {Expect (browser.getCurrentUrl ()). ToMatch (/ \ / my-next-page /);});});
I have tried all kinds of actions but nothing is working. Anyone came to this issue?
Comments
Post a Comment