This was the problematic code:
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); | |
}); | |
// some tests ... | |
it("shows a new 'autoresponder' mailing", function () { | |
element(by.css('#new_ma')).click(); // <- produces an error | |
expect(ptor.getCurrentUrl()) | |
.toMatch('/projects/excecutive-education/new-mailing/ma'); | |
}); | |
}); |
which caused the following error:
ElementNotVisibleError: element not visible
This happened because the element we were trying to click on was hidden.
Googling a bit again, we found (here) that to avoid the error we had to click on the dropdown before clicking on the option to open it up, so that it wa visible to the user:
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("shows a new 'autoresponder' mailing", function () { | |
element(by.css('.dropdown .new_mailings')).click(); // <- this fixes it | |
element(by.css('#new_ma')) | |
.click().then(function () { | |
expect(ptor.getCurrentUrl()) | |
.toMatch( | |
'/projects/excecutive-education/new-mailing/ma' | |
); | |
} | |
); | |
}); |
Again we extracted this bit of code into a helper method in out 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("shows a new 'autoresponder' mailing", function () { | |
TestTools.clickDropdownOption( // <- helper | |
'.dropdown .new_mailings', '#new_ma' | |
).then(function () { | |
expect(ptor.getCurrentUrl()) | |
.toMatch( | |
'/projects/excecutive-education/new-mailing/ma' | |
); | |
} | |
); | |
}); |
----------------
PS: Check also my previous post about Protractor:
No comments:
Post a Comment