@camunda/e2e-test-suite 0.0.432 → 0.0.434
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.
|
@@ -17,42 +17,35 @@ _8_7_1.test.describe('Navigation Tests', () => {
|
|
|
17
17
|
await (0, _setup_1.captureScreenshot)(page, testInfo);
|
|
18
18
|
await (0, _setup_1.captureFailureVideo)(page, testInfo);
|
|
19
19
|
});
|
|
20
|
-
(0, _8_7_1.test)('
|
|
21
|
-
await
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
timeout: 120000,
|
|
26
|
-
});
|
|
27
|
-
await modelerHomePage.clickMessageBanner();
|
|
20
|
+
(0, _8_7_1.test)('Navigate to Web Modeler', async ({ appsPage, modelerHomePage }) => {
|
|
21
|
+
await appsPage.clickCamundaApps();
|
|
22
|
+
await appsPage.clickModeler();
|
|
23
|
+
await (0, test_1.expect)(modelerHomePage.modelerPageBanner).toBeVisible({
|
|
24
|
+
timeout: 120000,
|
|
28
25
|
});
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
await
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
await
|
|
44
|
-
|
|
45
|
-
await appsPage.clickOptimize(clusterName);
|
|
46
|
-
await (0, test_1.expect)(optimizeHomePage.optimizeBanner).toBeVisible({
|
|
47
|
-
timeout: 120000,
|
|
48
|
-
});
|
|
26
|
+
});
|
|
27
|
+
(0, _8_7_1.test)('Navigate to Console', async ({ appsPage, homePage }) => {
|
|
28
|
+
await appsPage.clickCamundaApps();
|
|
29
|
+
await appsPage.clickConsoleLink();
|
|
30
|
+
await (0, test_1.expect)(homePage.consoleBanner).toBeVisible({ timeout: 120000 });
|
|
31
|
+
});
|
|
32
|
+
(0, _8_7_1.test)('Navigate to Operate', async ({ appsPage, operateHomePage }) => {
|
|
33
|
+
await appsPage.clickCamundaApps();
|
|
34
|
+
await appsPage.clickOperate(clusterName);
|
|
35
|
+
await (0, test_1.expect)(operateHomePage.operateBanner).toBeVisible({ timeout: 120000 });
|
|
36
|
+
});
|
|
37
|
+
(0, _8_7_1.test)('Navigate to Optimize', async ({ appsPage, optimizeHomePage }) => {
|
|
38
|
+
await appsPage.clickCamundaApps();
|
|
39
|
+
await appsPage.clickOptimize(clusterName);
|
|
40
|
+
await (0, test_1.expect)(optimizeHomePage.optimizeBanner).toBeVisible({
|
|
41
|
+
timeout: 120000,
|
|
49
42
|
});
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
43
|
+
});
|
|
44
|
+
(0, _8_7_1.test)('Navigate to Tasklist', async ({ appsPage, taskPanelPage }) => {
|
|
45
|
+
await appsPage.clickCamundaApps();
|
|
46
|
+
await appsPage.clickTasklist(clusterName);
|
|
47
|
+
await (0, test_1.expect)(taskPanelPage.taskListPageBanner).toBeVisible({
|
|
48
|
+
timeout: 120000,
|
|
56
49
|
});
|
|
57
50
|
});
|
|
58
51
|
});
|
|
@@ -132,7 +132,8 @@ if (process.env.IS_MT === 'true') {
|
|
|
132
132
|
});
|
|
133
133
|
});
|
|
134
134
|
});
|
|
135
|
-
|
|
135
|
+
// Skipped due to 320: https://github.com/camunda/marketplace-api/issues/320
|
|
136
|
+
SM_8_7_1.test.skip('Main User Can Create & Access Tenant - Connectors Flow', async ({ modelerHomePage, modelerCreatePage, operateProcessInstancePage, operateProcessesPage, operateHomePage, navigationPage, identityTenantPage, connectorSettingsPage, connectorMarketplacePage, optimizeHomePage, optimizeDashboardPage, context, }) => {
|
|
136
137
|
SM_8_7_1.test.slow();
|
|
137
138
|
const randomString = await (0, _setup_1.generateRandomStringAsync)(3);
|
|
138
139
|
const processName = 'Main_User_Connectors_Flow_' + randomString;
|
|
@@ -234,7 +235,8 @@ if (process.env.IS_MT === 'true') {
|
|
|
234
235
|
});
|
|
235
236
|
});
|
|
236
237
|
});
|
|
237
|
-
|
|
238
|
+
// Skipped due to 320: https://github.com/camunda/marketplace-api/issues/320
|
|
239
|
+
SM_8_7_1.test.skip('Second User Can Access Tenant Created By Main User - Connectors Flow', async ({ modelerHomePage, modelerCreatePage, operateProcessInstancePage, operateProcessesPage, operateHomePage, navigationPage, identityTenantPage, connectorSettingsPage, connectorMarketplacePage, loginPage, optimizeHomePage, optimizeDashboardPage, }) => {
|
|
238
240
|
SM_8_7_1.test.slow();
|
|
239
241
|
const randomString = await (0, _setup_1.generateRandomStringAsync)(3);
|
|
240
242
|
const processName = 'Second_User_Connectors_Flow_' + randomString;
|
|
@@ -331,7 +333,8 @@ if (process.env.IS_MT === 'true') {
|
|
|
331
333
|
});
|
|
332
334
|
});
|
|
333
335
|
});
|
|
334
|
-
|
|
336
|
+
// Skipped due to 320: https://github.com/camunda/marketplace-api/issues/320
|
|
337
|
+
SM_8_7_1.test.skip('User Can Be Assigned To Multiple Tenants', async ({ page, identityPage, modelerHomePage, modelerCreatePage, operateProcessInstancePage, operateProcessesPage, operateHomePage, navigationPage, identityTenantPage, connectorSettingsPage, connectorMarketplacePage, context, }) => {
|
|
335
338
|
SM_8_7_1.test.slow();
|
|
336
339
|
const randomString = await (0, _setup_1.generateRandomStringAsync)(3);
|
|
337
340
|
const processName1 = 'Multiple_Tenant_Flow_1' + randomString;
|
|
@@ -126,7 +126,8 @@ if (process.env.IS_MT === 'true') {
|
|
|
126
126
|
}
|
|
127
127
|
});
|
|
128
128
|
});
|
|
129
|
-
|
|
129
|
+
// Skipped due to 320: https://github.com/camunda/marketplace-api/issues/320
|
|
130
|
+
SM_8_8_1.test.skip('Main User Can Create & Access Tenant - Connectors Flow @tasklistV2', async ({ page, modelerHomePage, modelerCreatePage, operateProcessInstancePage, operateProcessesPage, operateHomePage, navigationPage, managementIdentityTenantPage, connectorSettingsPage, connectorMarketplacePage, optimizeHomePage, optimizeDashboardPage, ocIdentityHomePage, ocTenantPage, }) => {
|
|
130
131
|
SM_8_8_1.test.slow();
|
|
131
132
|
const randomString = await (0, _setup_1.generateRandomStringAsync)(3);
|
|
132
133
|
const processName = 'Main_User_Connectors_Flow_' + randomString;
|
|
@@ -257,7 +258,8 @@ if (process.env.IS_MT === 'true') {
|
|
|
257
258
|
});
|
|
258
259
|
}
|
|
259
260
|
});
|
|
260
|
-
|
|
261
|
+
// Skipped due to 320: https://github.com/camunda/marketplace-api/issues/320
|
|
262
|
+
SM_8_8_1.test.skip('Second User Can Access Tenant Created By Main User - Connectors Flow @tasklistV2', async ({ page, modelerHomePage, modelerCreatePage, operateProcessInstancePage, operateProcessesPage, operateHomePage, navigationPage, managementIdentityTenantPage, connectorSettingsPage, connectorMarketplacePage, optimizeHomePage, optimizeDashboardPage, ocIdentityHomePage, ocTenantPage, managementIdentityPage, keycloakAdminPage, keycloakLoginPage, ocIdentityRolesPage, ocIdentityMappingRulesPage, browser, }) => {
|
|
261
263
|
SM_8_8_1.test.slow();
|
|
262
264
|
const randomString = await (0, _setup_1.generateRandomStringAsync)(3);
|
|
263
265
|
const processName = 'Second_User_Connectors_Flow_' + randomString;
|
|
@@ -385,7 +387,8 @@ if (process.env.IS_MT === 'true') {
|
|
|
385
387
|
});
|
|
386
388
|
}
|
|
387
389
|
});
|
|
388
|
-
|
|
390
|
+
// Skipped due to 320: https://github.com/camunda/marketplace-api/issues/320
|
|
391
|
+
SM_8_8_1.test.skip('User Can Be Assigned To Multiple Tenants @tasklistV2', async ({ page, modelerHomePage, modelerCreatePage, operateProcessInstancePage, operateProcessesPage, operateHomePage, navigationPage, managementIdentityTenantPage, connectorSettingsPage, connectorMarketplacePage, ocIdentityHomePage, ocTenantPage, managementIdentityPage, }) => {
|
|
389
392
|
SM_8_8_1.test.slow();
|
|
390
393
|
const randomString = await (0, _setup_1.generateRandomStringAsync)(3);
|
|
391
394
|
const processName1 = 'Multiple_Tenant_Flow_1' + randomString;
|