keycloak-scim/cypress/support/pages/admin_console/manage/clients/ClientScopesTab.ts

9 lines
184 B
TypeScript
Raw Normal View History

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