e2e tests for favourite directive (#4912)

* in progress - favourite directive e2e tests

* in progress - favourite directive e2e tests

* favourite directive e2e tests

* update testcase name

* updated test case names

* remove unnecessary line spaces

* refactored favourites to favorites
This commit is contained in:
Geeta Mandakini Ayyalasomayajula
2019-07-10 09:56:28 +01:00
committed by Eugenio Romano
parent bbe22fd2a7
commit fadcc19eba
7 changed files with 263 additions and 9 deletions

View File

@@ -319,7 +319,7 @@ export class DataTableComponentPage {
}
getCellByContent(content) {
const cell = this.rootElement.element(by.cssContainingText(`div[class*='adf-datatable-row'] div[class*='adf-name-location-cell-name']`, content));
const cell = this.rootElement.element(by.cssContainingText(`div[class*='adf-datatable-row'] div[class*='adf-datatable-cell']`, content));
BrowserVisibility.waitUntilElementIsVisible(cell);
return cell;
}