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