keycloak-scim/cypress/support/pages/admin_console/manage/clients/ClientScopesTab.ts
2022-02-21 13:14:20 +01:00

13 lines
303 B
TypeScript

export default class ClientScopesTab {
private clientScopesTab = "clientScopesTab";
goToClientScopesTab() {
cy.findByTestId(this.clientScopesTab).click();
return this;
}
clickDedicatedScope(clientId: string) {
cy.findByText(`${clientId}-dedicated`).click();
return this;
}
}