keycloak-scim/cypress/support/pages/admin_console/manage/clients/ClientScopesTab.ts
2022-01-08 10:27:57 +01:00

8 lines
196 B
TypeScript

export default class ClientScopesTab {
private clientScopesTab = "#pf-tab-clientScopes-clientScopes";
goToClientScopesTab() {
cy.get(this.clientScopesTab).click();
return this;
}
}