keycloak-scim/cypress/support/pages/ViewHeaderPage.ts
Erik Jan de Wit a48088765a
Search and create sub groups (#387)
* 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
2021-03-01 10:06:04 -05:00

8 lines
194 B
TypeScript

export default class ListingPage {
private actionMenu = "action-dropdown";
clickAction(action: string) {
cy.getId(this.actionMenu).click().getId(action).click();
return this;
}
}