@camunda/e2e-test-suite 0.0.415 → 0.0.416

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_10_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_10_1.test)('Basic Navigation', async ({ homePage, appsPage, modelerHomePage, operateHomePage, optimizeHomePage, taskPanelPage, ocIdentityHomePage, }) => {
20
- await _8_10_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_10_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_10_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_10_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_10_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_10_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_10_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_10_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_10_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_10_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_10_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_10_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
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@camunda/e2e-test-suite",
3
- "version": "0.0.415",
3
+ "version": "0.0.416",
4
4
  "description": "End-to-end test helpers for Camunda 8",
5
5
  "repository": {
6
6
  "type": "git",