Skip to content

Instantly share code, notes, and snippets.

@trikitrok
Last active June 30, 2024 14:38
Show Gist options
  • Save trikitrok/619f079b2487487c8e30 to your computer and use it in GitHub Desktop.
Save trikitrok/619f079b2487487c8e30 to your computer and use it in GitHub Desktop.
it("removes a landing", function () {
element.all(by.css('.delete')).first().click();
ptor.driver.switchTo().alert().then( // <- this fixes the problem
function (alert) {
alert.accept();
},
function (error) {
}
);
expect(
element.all(
by.repeater('landing in project.landings')).count()
).toBe(5);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment