@camunda/e2e-test-suite 0.0.109 → 0.0.111

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.
@@ -512,6 +512,7 @@ class ModelerCreatePage {
512
512
  async enterDiagramName(name) {
513
513
  await this.diagramNameInput.fill(name, { timeout: 60000 });
514
514
  await this.diagramNameInput.press('Enter', { timeout: 60000 });
515
+ await (0, sleep_1.sleep)(1000);
515
516
  }
516
517
  async clickVariableInput() {
517
518
  await this.variableInput.click();
@@ -150,7 +150,8 @@ class OperateProcessesPage {
150
150
  if (attempt === MAX_ATTEMPTS) {
151
151
  throw new Error(`Failed to open instance "${processName}" after ${MAX_ATTEMPTS} attempts. Last error: ${String(err)}`);
152
152
  }
153
- await this.page.reload();
153
+ await this.page.reload({ waitUntil: 'domcontentloaded' });
154
+ await (0, sleep_1.sleep)(1000);
154
155
  }
155
156
  }
156
157
  }
@@ -22,6 +22,6 @@ _8_7_1.test.describe('Login Tests', () => {
22
22
  await loginPage.fillPassword(process.env.C8_PASSWORD);
23
23
  await (0, test_1.expect)(loginPage.passwordHeading).toBeVisible();
24
24
  await loginPage.clickLoginButton();
25
- await (0, test_1.expect)(homePage.consoleBanner).toBeVisible({ timeout: 120000 });
25
+ await (0, test_1.expect)(homePage.consoleBanner).toBeVisible({ timeout: 90000 });
26
26
  });
27
27
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@camunda/e2e-test-suite",
3
- "version": "0.0.109",
3
+ "version": "0.0.111",
4
4
  "description": "End-to-end test helpers for Camunda 8",
5
5
  "repository": {
6
6
  "type": "git",