2021-12-10 12:24:26 +00:00
|
|
|
export default class ClientScopesTab {
|
2022-01-31 07:20:35 +00:00
|
|
|
private clientScopesTab = "clientScopesTab";
|
2021-12-10 12:24:26 +00:00
|
|
|
|
2022-01-08 09:27:57 +00:00
|
|
|
goToClientScopesTab() {
|
2022-01-31 07:20:35 +00:00
|
|
|
cy.findByTestId(this.clientScopesTab).click();
|
2021-12-10 12:24:26 +00:00
|
|
|
return this;
|
|
|
|
}
|
|
|
|
}
|