@camunda/e2e-test-suite 0.0.419 → 0.0.421

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.
@@ -16,49 +16,40 @@ _8_9_1.test.describe('Navigation Tests', () => {
16
16
  await (0, _setup_1.captureScreenshot)(page, testInfo);
17
17
  await (0, _setup_1.captureFailureVideo)(page, testInfo);
18
18
  });
19
- (0, _8_9_1.test)('Basic Navigation', async ({ homePage, appsPage, modelerHomePage, operateHomePage, optimizeHomePage, taskPanelPage, ocIdentityHomePage, }) => {
20
- await _8_9_1.test.step('Assert Web Modeler Navigation', async () => {
21
- await appsPage.clickCamundaApps();
22
- await appsPage.clickModeler();
23
- await (0, test_1.expect)(modelerHomePage.modelerPageBanner).toBeVisible({
24
- timeout: 120000,
25
- });
26
- await modelerHomePage.clickMessageBanner();
19
+ (0, _8_9_1.test)('Navigate to Web Modeler', async ({ appsPage, modelerHomePage }) => {
20
+ await appsPage.clickCamundaApps();
21
+ await appsPage.clickModeler();
22
+ await (0, test_1.expect)(modelerHomePage.modelerPageBanner).toBeVisible({
23
+ timeout: 120000,
27
24
  });
28
- await _8_9_1.test.step('Assert Console Navigation', async () => {
29
- await appsPage.clickCamundaApps();
30
- await appsPage.clickConsoleLink();
31
- await (0, test_1.expect)(homePage.consoleBanner).toBeVisible({
32
- timeout: 120000,
33
- });
34
- });
35
- await _8_9_1.test.step('Assert Operate Navigation', async () => {
36
- await appsPage.clickCamundaApps();
37
- await appsPage.clickOperate(clusterName);
38
- await (0, test_1.expect)(operateHomePage.operateBanner).toBeVisible({
39
- timeout: 120000,
40
- });
41
- });
42
- await _8_9_1.test.step('Assert Optimize Navigation', async () => {
43
- await appsPage.clickCamundaApps();
44
- await appsPage.clickOptimize(clusterName);
45
- await (0, test_1.expect)(optimizeHomePage.optimizeBanner).toBeVisible({
46
- timeout: 120000,
47
- });
48
- });
49
- await _8_9_1.test.step('Assert Tasklist Navigation', async () => {
50
- await appsPage.clickCamundaApps();
51
- await appsPage.clickTasklist(clusterName);
52
- await (0, test_1.expect)(taskPanelPage.taskListPageBanner).toBeVisible({
53
- timeout: 120000,
54
- });
25
+ });
26
+ (0, _8_9_1.test)('Navigate to Console', async ({ appsPage, homePage }) => {
27
+ await appsPage.clickCamundaApps();
28
+ await appsPage.clickConsoleLink();
29
+ await (0, test_1.expect)(homePage.consoleBanner).toBeVisible({ timeout: 120000 });
30
+ });
31
+ (0, _8_9_1.test)('Navigate to Operate', async ({ appsPage, operateHomePage }) => {
32
+ await appsPage.clickCamundaApps();
33
+ await appsPage.clickOperate(clusterName);
34
+ await (0, test_1.expect)(operateHomePage.operateBanner).toBeVisible({ timeout: 120000 });
35
+ });
36
+ (0, _8_9_1.test)('Navigate to Optimize', async ({ appsPage, optimizeHomePage }) => {
37
+ await appsPage.clickCamundaApps();
38
+ await appsPage.clickOptimize(clusterName);
39
+ await (0, test_1.expect)(optimizeHomePage.optimizeBanner).toBeVisible({
40
+ timeout: 120000,
55
41
  });
56
- await _8_9_1.test.step('Assert Tasklist Navigation', async () => {
57
- await appsPage.clickCamundaApps();
58
- await appsPage.clickAdmin(clusterName);
59
- await (0, test_1.expect)(ocIdentityHomePage.adminBanner).toBeVisible({
60
- timeout: 120000,
61
- });
42
+ });
43
+ (0, _8_9_1.test)('Navigate to Tasklist', async ({ appsPage, taskPanelPage }) => {
44
+ await appsPage.clickCamundaApps();
45
+ await appsPage.clickTasklist(clusterName);
46
+ await (0, test_1.expect)(taskPanelPage.taskListPageBanner).toBeVisible({
47
+ timeout: 120000,
62
48
  });
63
49
  });
50
+ (0, _8_9_1.test)('Navigate to Admin', async ({ appsPage, ocIdentityHomePage }) => {
51
+ await appsPage.clickCamundaApps();
52
+ await appsPage.clickAdmin(clusterName);
53
+ await (0, test_1.expect)(ocIdentityHomePage.adminBanner).toBeVisible({ timeout: 120000 });
54
+ });
64
55
  });
@@ -129,9 +129,8 @@ SM_8_10_1.test.describe.parallel('Smoke Tests', () => {
129
129
  });
130
130
  console.log(`[${testInfo.title}] Test end: timeout = ${testInfo.timeout}`);
131
131
  });
132
- (0, SM_8_10_1.test)('Most Common REST Connector User Flow @tasklistV2', async ({ context, operateHomePage, modelerHomePage, modelerCreatePage, connectorSettingsPage, navigationPage, operateProcessesPage, operateProcessInstancePage, connectorMarketplacePage, }, testInfo) => {
133
- // Skipped only for AG to unblock until failure is investigated
134
- SM_8_10_1.test.skip(process.env.IS_AG === 'true', 'Skipping Most Common REST Connector User Flow for AG unblock while failure is investigated');
132
+ // Skipped to unblock AG until failure is investigate
133
+ SM_8_10_1.test.skip('Most Common REST Connector User Flow @tasklistV2', async ({ context, operateHomePage, modelerHomePage, modelerCreatePage, connectorSettingsPage, navigationPage, operateProcessesPage, operateProcessInstancePage, connectorMarketplacePage, }, testInfo) => {
135
134
  console.log(`[${testInfo.title}] Test start: timeout = ${testInfo.timeout}`);
136
135
  const processName = 'REST_Connector_Basic_Auth_Process' +
137
136
  (await (0, _setup_1.generateRandomStringAsync)(3));
@@ -129,9 +129,8 @@ SM_8_9_1.test.describe.parallel('Smoke Tests', () => {
129
129
  });
130
130
  console.log(`[${testInfo.title}] Test end: timeout = ${testInfo.timeout}`);
131
131
  });
132
- (0, SM_8_9_1.test)('Most Common REST Connector User Flow @tasklistV2', async ({ page, context, operateHomePage, modelerHomePage, modelerCreatePage, connectorSettingsPage, navigationPage, operateProcessesPage, operateProcessInstancePage, connectorMarketplacePage, }, testInfo) => {
133
- // Skipped only for AG to unblock until failure is investigated
134
- SM_8_9_1.test.skip(process.env.IS_AG === 'true', 'Skipping Most Common REST Connector User Flow for AG unblock while failure is investigated');
132
+ // Skipped to unblock AG until failure is investigate
133
+ SM_8_9_1.test.skip('Most Common REST Connector User Flow @tasklistV2', async ({ page, context, operateHomePage, modelerHomePage, modelerCreatePage, connectorSettingsPage, navigationPage, operateProcessesPage, operateProcessInstancePage, connectorMarketplacePage, }, testInfo) => {
135
134
  console.log(`[${testInfo.title}] Test start: timeout = ${testInfo.timeout}`);
136
135
  const processName = 'REST_Connector_Basic_Auth_Process' +
137
136
  (await (0, _setup_1.generateRandomStringAsync)(3));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@camunda/e2e-test-suite",
3
- "version": "0.0.419",
3
+ "version": "0.0.421",
4
4
  "description": "End-to-end test helpers for Camunda 8",
5
5
  "repository": {
6
6
  "type": "git",