a48088765a
* fixed group section * simplified create group dialog * create subgroup * initial search groups * added initial search * add empty state and links to details * Added cypress tests * fixed types * changed to the more clear getId * changed to use testid * fixed merge error * fixed test * changed text for empty sub groups * fix merge error * fix test
19 lines
437 B
TypeScript
19 lines
437 B
TypeScript
export class SearchGroupPage {
|
|
private searchField = "group-search";
|
|
private searchButton = "search-button";
|
|
|
|
searchGroup(search: string) {
|
|
cy.getId(this.searchField).type(search);
|
|
return this;
|
|
}
|
|
|
|
clickSearchButton() {
|
|
cy.getId(this.searchButton).click();
|
|
return this;
|
|
}
|
|
|
|
checkTerm(searchTerm: string) {
|
|
cy.get(".pf-c-chip-group").children().contains(searchTerm).should("exist");
|
|
return this;
|
|
}
|
|
}
|