parent
3834e86ebf
commit
1c3890bb0e
2 changed files with 3 additions and 2 deletions
|
@ -1152,11 +1152,12 @@ describe("Clients test", () => {
|
||||||
});
|
});
|
||||||
|
|
||||||
describe("Realm client", () => {
|
describe("Realm client", () => {
|
||||||
const clientName = "master-realm";
|
const clientName = `${realmName}-realm`;
|
||||||
|
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
loginPage.logIn();
|
loginPage.logIn();
|
||||||
keycloakBefore();
|
keycloakBefore();
|
||||||
|
// Stay in master realm, do not switch to ${realmName} realm
|
||||||
commonPage.sidebar().goToClients();
|
commonPage.sidebar().goToClients();
|
||||||
commonPage.tableToolbarUtils().searchItem(clientName);
|
commonPage.tableToolbarUtils().searchItem(clientName);
|
||||||
commonPage.tableUtils().clickRowItemLink(clientName);
|
commonPage.tableUtils().clickRowItemLink(clientName);
|
||||||
|
|
|
@ -39,7 +39,7 @@ export default class TablePage extends CommonElements {
|
||||||
this.#tableRowItem,
|
this.#tableRowItem,
|
||||||
)
|
)
|
||||||
.contains(itemName)
|
.contains(itemName)
|
||||||
.click();
|
.click({ force: true });
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue