[ADF-4026] - automate process filter results check (#4874)

* process-filter-results test automated

* updated the test case numbers

* fix test

* fix test

* added wait for the datatable to load

* fixes

* created another process instance in simpleApp by anotherUser, to test the negative scenario's in filtering.

* created another process instance in simpleApp by anotherUser, to test the negative scenario's in filtering.

* delete both the users created.
This commit is contained in:
Geeta Mandakini Ayyalasomayajula
2019-06-25 14:44:30 +01:00
committed by Eugenio Romano
parent 72eab9e84d
commit d531a022d0
3 changed files with 303 additions and 3 deletions

View File

@@ -68,6 +68,10 @@ export class ProcessListCloudComponentPage {
return this.dataTable.checkContentIsDisplayed(this.columns.name, processName);
}
checkContentIsNotDisplayedByName(processName) {
return this.dataTable.checkContentIsNotDisplayed(this.columns.name, processName);
}
checkContentIsDisplayedById(processId) {
return this.dataTable.checkContentIsDisplayed(this.columns.id, processId);
}