[ADF-3848]Implement edit task filters tests (#4110)

* Add test for 'all the filters properly set up accordingly with the Query Param' acceptance criteria.

* Implement edit task filters tests.

* Fix lint errors

* Fix existent tests

* fix lint error

* Changed 'status' to 'state'
This commit is contained in:
cristinaj
2019-02-01 21:41:00 +02:00
committed by Eugenio Romano
parent 0282bfa468
commit b18731381a
6 changed files with 581 additions and 8 deletions

View File

@@ -251,6 +251,10 @@ export class DataTablePage {
return this;
}
checkSpinnerIsNotDisplayed() {
Util.waitUntilElementIsNotOnPage(this.spinner);
}
checkRowIsDisplayedByName(filename) {
Util.waitUntilElementIsVisible(element.all(by.css(`div[filename="${filename}"]`)).first());
}