@camunda/e2e-test-suite 0.0.369 → 0.0.371
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.
|
@@ -110,7 +110,7 @@ class IdentityTenantPage {
|
|
|
110
110
|
try {
|
|
111
111
|
await (0, test_1.expect)(this.assignUserFinalButton).toBeVisible({ timeout: 60000 });
|
|
112
112
|
await this.assignUserFinalButton.click();
|
|
113
|
-
await (0, test_1.expect)(this.page.getByText('Users assigned')).toBeVisible();
|
|
113
|
+
await (0, test_1.expect)(this.page.getByText('Users assigned', { exact: true })).toBeVisible();
|
|
114
114
|
}
|
|
115
115
|
catch (e) {
|
|
116
116
|
if (await this.page.getByText('ALREADY_EXISTS').first().isVisible()) {
|
|
@@ -80,7 +80,7 @@ class ManagementIdentityPage {
|
|
|
80
80
|
}
|
|
81
81
|
async clickUser(username) {
|
|
82
82
|
const searchbox = this.page.getByRole('searchbox');
|
|
83
|
-
await searchbox.click();
|
|
83
|
+
await searchbox.click({ timeout: 30000 });
|
|
84
84
|
await searchbox.fill(username);
|
|
85
85
|
const user = this.page.getByRole('cell', { name: username, exact: true });
|
|
86
86
|
await (0, test_1.expect)(user).toBeVisible({ timeout: 60000 });
|
|
@@ -44,9 +44,6 @@ _8_10_1.test.describe('Cluster Setup Tests', () => {
|
|
|
44
44
|
}
|
|
45
45
|
});
|
|
46
46
|
(0, _8_10_1.test)('Create AWS Cluster', async ({ page, loginPage, homePage, clusterPage, clusterDetailsPage, clusterSecretsPage, }, testInfo) => {
|
|
47
|
-
if (process.env.IS_AG === 'true') {
|
|
48
|
-
_8_10_1.test.skip(true, 'Skipping AWS cluster test until the issue is investigated');
|
|
49
|
-
}
|
|
50
47
|
await (0, UtilitiesPage_1.loginWithRetry)(page, loginPage, users_1.testUsers.mainUser, (testInfo.workerIndex + 1) * 1000);
|
|
51
48
|
_8_10_1.test.slow();
|
|
52
49
|
const clusterName = 'AWS Cluster';
|
|
@@ -85,7 +85,9 @@ if (process.env.IS_MT === 'true') {
|
|
|
85
85
|
await page.reload();
|
|
86
86
|
await optimizeDashboardPage.clickFilterTable();
|
|
87
87
|
await optimizeDashboardPage.fillFilterTable(processName);
|
|
88
|
-
await optimizeDashboardPage.processAssertion(processName
|
|
88
|
+
await optimizeDashboardPage.processAssertion(processName, {
|
|
89
|
+
timeout: 250000,
|
|
90
|
+
});
|
|
89
91
|
});
|
|
90
92
|
}
|
|
91
93
|
await SM_8_10_1.test.step('Clear cookies and reset session', async () => {
|