Fixed locator for search box (#2328)
This commit is contained in:
parent
b2d507a390
commit
1d5eccfbb2
1 changed files with 2 additions and 1 deletions
|
@ -26,7 +26,8 @@ export enum FilterSession {
|
||||||
}
|
}
|
||||||
|
|
||||||
export default class ListingPage {
|
export default class ListingPage {
|
||||||
private searchInput = '.pf-c-toolbar__item [type="search"]:visible';
|
private searchInput =
|
||||||
|
".pf-c-toolbar__item .pf-c-search-input__text-input:visible";
|
||||||
private tableToolbar = ".pf-c-toolbar";
|
private tableToolbar = ".pf-c-toolbar";
|
||||||
private itemsRows = "table:visible";
|
private itemsRows = "table:visible";
|
||||||
private deleteUserButton = "delete-user-btn";
|
private deleteUserButton = "delete-user-btn";
|
||||||
|
|
Loading…
Reference in a new issue