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

14 lines
303 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;
}
clickDedicatedScope(clientId: string) {
cy.findByText(`${clientId}-dedicated`).click();
return this;
}
}