keycloak-scim/cypress/support/pages/admin_console/manage/clients/ClientScopesTab.ts
2021-12-10 13:24:26 +01:00

8 lines
184 B
TypeScript

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