8 lines
184 B
TypeScript
8 lines
184 B
TypeScript
export default class ClientScopesTab {
|
|
private clientScopesTab = "#pf-tab-clientScopes-clientScopes";
|
|
|
|
goToTab() {
|
|
cy.get(this.clientScopesTab).click();
|
|
return this;
|
|
}
|
|
}
|