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

9 lines
187 B
TypeScript
Raw Normal View History

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