Improving e2e backlog and kanban tests

stable
Alejandro Alonso 2016-09-27 12:28:51 +02:00
parent 1bbe86ef16
commit 78f5b19984
2 changed files with 2 additions and 10 deletions

View File

@ -142,11 +142,7 @@ describe('backlog', function() {
editUSLightbox.status(3).click();
// tags
editUSLightbox.tags().sendKeys('www');
browser.actions().sendKeys(protractor.Key.ENTER).perform();
editUSLightbox.tags().sendKeys('xxx');
browser.actions().sendKeys(protractor.Key.ENTER).perform();
editUSLightbox.tags();
// description
editUSLightbox.description().sendKeys('test test test test');

View File

@ -143,11 +143,7 @@ describe('kanban', function() {
expect(totalPoints).to.be.equal('4');
// tags
createUSLightbox.tags().sendKeys('www');
browser.actions().sendKeys(protractor.Key.ENTER).perform();
createUSLightbox.tags().sendKeys('xxx');
browser.actions().sendKeys(protractor.Key.ENTER).perform();
createUSLightbox.tags();
// description
createUSLightbox.description().sendKeys(formFields.description);