Last week we found a problem while trying to test that an element from a list was deleted:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
describe("A project landings list page", function () { | |
var TestTools = require('./TestTools'), | |
Navigation = require('./Navigation'), | |
ptor; | |
beforeEach(function () { | |
TestTools.resetTestData(); | |
ptor = protractor.getInstance(); | |
ptor.get('/ebo/#/projects/excecutive-education'); | |
Navigation.logIn(ptor); | |
TestTools.waitForElementByCssToBePresent('.project-item__title', ptor); | |
}); | |
it("lists all landings and mailings", function () { | |
var landingsAndMailings = element.all( | |
by.repeater('landing in project.landings')), | |
mailings = element.all( | |
by.repeater('mailing in project.landings | filter:{mailing:true}')); | |
landingsAndMailings.count().then(function (landingsAndMailingsNumber) { | |
mailings.count().then(function (mailingsNumber) { | |
var landingsNumbers = landingsAndMailingsNumber - mailingsNumber; | |
expect(mailingsNumber).toBe(4); | |
expect(landingsNumbers).toBe(2); | |
}); | |
}); | |
}); | |
it("removes a landing", function () { | |
element.all(by.css('.delete')).first().click(); // <- the problem happens here | |
expect( | |
element.all( | |
by.repeater('landing in project.landings')).count() | |
).toBe(5); | |
}); | |
// some other tests | |
}); |
The problem was that clicking on the delete icon was displaying an alert box, prompting the user to confirm whether they actually wanted to delete the element or not, that protractor didn't expect and was causing the following error:
UnexpectedAlertOpenError: unexpected alert open
After searching in Google for a while, we found a solution:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); | |
}); |
that fixed the problem by switching to the alert box and confirming that we wanted to delete the element.
Since it was a bit verbose and we'd probably have to use it again in some other tests, we extracted it to a helper function in our TestTools module:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
it("removes a landing", function () { | |
element.all(by.css('.delete')).first().click(); | |
TestTools.switchToAlertAndAccept(ptor); // <- the fix is now in a helper function | |
expect( | |
element.all( | |
by.repeater('landing in project.landings')).count() | |
).toBe(5); | |
}); |
I hope you might find this useful if you're using protractor.
Yes, thanks this was helpful even without protractor, just for selenium. Alert handling is a big pain in the *** there.
ReplyDeleteI'm glad it was useful to you.
DeleteBest regards,
M
It is very useful but it is not working when i use it after the select option
ReplyDeleteWorks for me...
ReplyDeleteThanks a lot
It is not working for me and I am getting the following error:
ReplyDelete....A Jasmine spec timed out. Resetting the WebDriver Control Flow.
The last active task was:
Protractor.waitForAngular()