2021-01-27 12:56:28 +00:00
|
|
|
export default class ListingPage {
|
2021-05-27 11:41:29 +00:00
|
|
|
private searchInput = '.pf-c-toolbar__item [type="search"]:visible';
|
|
|
|
private itemsRows = "table";
|
|
|
|
private itemRowDrpDwn = ".pf-c-dropdown__toggle";
|
|
|
|
public exportBtn = '[role="menuitem"]:nth-child(1)';
|
|
|
|
public deleteBtn = '[role="menuitem"]:nth-child(2)';
|
|
|
|
private searchBtn =
|
|
|
|
".pf-c-page__main .pf-c-toolbar__content-section button.pf-m-control:visible";
|
|
|
|
private createBtn =
|
|
|
|
".pf-c-page__main .pf-c-toolbar__content-section button.pf-m-primary:visible";
|
|
|
|
private importBtn =
|
|
|
|
".pf-c-page__main .pf-c-toolbar__content-section button.pf-m-link";
|
2021-01-27 12:56:28 +00:00
|
|
|
|
|
|
|
goToCreateItem() {
|
|
|
|
cy.get(this.createBtn).click();
|
|
|
|
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
goToImportItem() {
|
|
|
|
cy.get(this.importBtn).click();
|
|
|
|
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
2021-03-02 09:12:40 +00:00
|
|
|
searchItem(searchValue: string, wait = true) {
|
|
|
|
if (wait) {
|
2021-03-18 12:48:14 +00:00
|
|
|
const searchUrl = `/auth/admin/realms/master/*${searchValue}*`;
|
2021-03-05 13:47:59 +00:00
|
|
|
cy.intercept(searchUrl).as("search");
|
2021-03-02 09:12:40 +00:00
|
|
|
}
|
2021-01-27 12:56:28 +00:00
|
|
|
cy.get(this.searchInput).type(searchValue);
|
|
|
|
cy.get(this.searchBtn).click();
|
2021-03-02 09:12:40 +00:00
|
|
|
if (wait) {
|
2021-03-05 13:47:59 +00:00
|
|
|
cy.wait(["@search"]);
|
2021-03-02 09:12:40 +00:00
|
|
|
}
|
2021-01-27 12:56:28 +00:00
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
2021-03-29 11:37:47 +00:00
|
|
|
clickRowDetails(itemName: string) {
|
|
|
|
cy.get(this.itemsRows)
|
|
|
|
.contains(itemName)
|
2021-05-27 11:41:29 +00:00
|
|
|
.parentsUntil("tbody")
|
2021-03-29 11:37:47 +00:00
|
|
|
.find(this.itemRowDrpDwn)
|
|
|
|
.click();
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
clickDetailMenu(name: string) {
|
|
|
|
cy.get(this.itemsRows).contains(name).click();
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
2021-01-28 09:07:12 +00:00
|
|
|
itemExist(itemName: string, exist = true) {
|
2021-01-27 12:56:28 +00:00
|
|
|
cy.get(this.itemsRows)
|
|
|
|
.contains(itemName)
|
|
|
|
.should((!exist ? "not." : "") + "exist");
|
|
|
|
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
2021-01-28 09:07:12 +00:00
|
|
|
goToItemDetails(itemName: string) {
|
2021-01-27 12:56:28 +00:00
|
|
|
cy.get(this.itemsRows).contains(itemName).click();
|
|
|
|
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
2021-01-28 09:07:12 +00:00
|
|
|
deleteItem(itemName: string) {
|
2021-03-29 11:37:47 +00:00
|
|
|
this.clickRowDetails(itemName);
|
|
|
|
this.clickDetailMenu("Delete");
|
2021-01-27 12:56:28 +00:00
|
|
|
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
2021-01-28 09:07:12 +00:00
|
|
|
exportItem(itemName: string) {
|
2021-03-29 11:37:47 +00:00
|
|
|
this.clickRowDetails(itemName);
|
|
|
|
this.clickDetailMenu("Export");
|
2021-01-27 12:56:28 +00:00
|
|
|
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
}
|