8b0327fa2c
* Changed to use routable tabs * fixed tests
8 lines
187 B
TypeScript
8 lines
187 B
TypeScript
export default class ClientScopesTab {
|
|
private clientScopesTab = "clientScopesTab";
|
|
|
|
goToClientScopesTab() {
|
|
cy.findByTestId(this.clientScopesTab).click();
|
|
return this;
|
|
}
|
|
}
|