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

9 lines
196 B
TypeScript
Raw Normal View History

export default class ClientScopesTab {
private clientScopesTab = "#pf-tab-clientScopes-clientScopes";
2022-01-08 09:27:57 +00:00
goToClientScopesTab() {
cy.get(this.clientScopesTab).click();
return this;
}
}