@camunda/e2e-test-suite 0.0.278 → 0.0.279
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.
|
@@ -23,7 +23,9 @@ class ClusterSecretsPage {
|
|
|
23
23
|
name: 'Create new secret',
|
|
24
24
|
});
|
|
25
25
|
this.keyInput = page.getByRole('textbox', { name: 'key' });
|
|
26
|
-
this.valueInput = page
|
|
26
|
+
this.valueInput = page
|
|
27
|
+
.getByRole('dialog')
|
|
28
|
+
.getByLabel('Value', { exact: true });
|
|
27
29
|
this.createButton = page.getByRole('button', { name: 'Create', exact: true });
|
|
28
30
|
this.connectorSecretsTable = page.getByRole('table', {
|
|
29
31
|
name: 'Connector secrets',
|
|
@@ -194,7 +194,13 @@ class ConsoleOrganizationPage {
|
|
|
194
194
|
}
|
|
195
195
|
}
|
|
196
196
|
async clickUsersTab() {
|
|
197
|
+
await (0, test_1.expect)(this.usersTab).toBeVisible({ timeout: 60000 });
|
|
197
198
|
await this.usersTab.click({ timeout: 60000 });
|
|
199
|
+
await (0, expectLocatorWithRetry_1.expectLocatorWithRetry)(this.page, this.filterTableSearchbox, {
|
|
200
|
+
postAction: async () => {
|
|
201
|
+
await this.usersTab.click({ timeout: 60000 });
|
|
202
|
+
},
|
|
203
|
+
});
|
|
198
204
|
}
|
|
199
205
|
async clickOptionsButton() {
|
|
200
206
|
await this.optionsButton.click({ timeout: 90000 });
|
|
@@ -287,7 +293,7 @@ class ConsoleOrganizationPage {
|
|
|
287
293
|
}
|
|
288
294
|
async clickMainUser(email) {
|
|
289
295
|
await this.filterTable([email]);
|
|
290
|
-
const user = this.rows.filter({ hasText: email }).first();
|
|
296
|
+
const user = this.rows.filter({ hasText: email }).getByRole('link').first();
|
|
291
297
|
await (0, test_1.expect)(user).toBeVisible({ timeout: 60000 });
|
|
292
298
|
await user.click();
|
|
293
299
|
}
|
|
@@ -178,7 +178,6 @@ _8_7_1.test.describe('Web Modeler User Flow Tests', () => {
|
|
|
178
178
|
await modelerHomePage.clickOpenOrganizationsButton();
|
|
179
179
|
await modelerHomePage.clickManageButton();
|
|
180
180
|
await consoleOrganizationsPage.clickUsersTab();
|
|
181
|
-
await page.reload();
|
|
182
181
|
await consoleOrganizationsPage.filterTable([
|
|
183
182
|
process.env.C8_USERNAME_TEST_3,
|
|
184
183
|
]);
|