f10661444d
* initial move group dialog * added test * fixed search and added breadcrumb * filter current group * added empty state * add cancel button to modal * fixed merge error
19 lines
387 B
TypeScript
19 lines
387 B
TypeScript
export default class MoveGroupModal {
|
|
private moveButton = "moveGroup";
|
|
private title = ".pf-c-modal-box__title";
|
|
|
|
clickRow(groupName: string) {
|
|
cy.getId(groupName).click();
|
|
return this;
|
|
}
|
|
|
|
checkTitle(title: string) {
|
|
cy.get(this.title).should("have.text", title);
|
|
return this;
|
|
}
|
|
|
|
clickMove() {
|
|
cy.getId(this.moveButton).click();
|
|
return this;
|
|
}
|
|
}
|