@camunda/e2e-test-suite 0.0.526 → 0.0.527
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -62,7 +62,7 @@ class OCIdentityHomePage {
|
|
|
62
62
|
await this.authorizationsTab.click();
|
|
63
63
|
}
|
|
64
64
|
async clickRolesTab() {
|
|
65
|
-
await (0,
|
|
65
|
+
await (0, expectLocatorWithRetry_1.expectLocatorWithRetry)(this.page, this.rolesTab);
|
|
66
66
|
await this.rolesTab.click();
|
|
67
67
|
}
|
|
68
68
|
async clickGroupsTab() {
|
|
@@ -4,6 +4,7 @@ exports.OCIdentityRolesPage = void 0;
|
|
|
4
4
|
const test_1 = require("@playwright/test");
|
|
5
5
|
const UtilitiesPage_1 = require("../SM-8.8/UtilitiesPage");
|
|
6
6
|
const expectLocatorWithPagination_1 = require("../../utils/assertionHelpers/expectLocatorWithPagination");
|
|
7
|
+
const expectLocatorWithRetry_1 = require("../../utils/assertionHelpers/expectLocatorWithRetry");
|
|
7
8
|
class OCIdentityRolesPage {
|
|
8
9
|
page;
|
|
9
10
|
selectResourceTypeTab;
|
|
@@ -173,7 +174,10 @@ class OCIdentityRolesPage {
|
|
|
173
174
|
await this.assignUserSubButton.click();
|
|
174
175
|
}
|
|
175
176
|
async clickAdminRole() {
|
|
176
|
-
await (0,
|
|
177
|
+
await (0, expectLocatorWithRetry_1.expectLocatorWithRetry)(this.page, this.adminRole, {
|
|
178
|
+
visibilityTimeout: 30000,
|
|
179
|
+
totalTimeout: 120000,
|
|
180
|
+
});
|
|
177
181
|
await this.adminRole.click();
|
|
178
182
|
}
|
|
179
183
|
async clickClientsTab() {
|