keycloak-scim/cypress/support/pages/admin_console/manage/clients/ClientScopesTab.ts
Erik Jan de Wit 8b0327fa2c
Changed to use routable tabs (#1934)
* Changed to use routable tabs

* fixed tests
2022-01-31 08:20:35 +01:00

8 lines
187 B
TypeScript

export default class ClientScopesTab {
private clientScopesTab = "clientScopesTab";
goToClientScopesTab() {
cy.findByTestId(this.clientScopesTab).click();
return this;
}
}