@camunda/e2e-test-suite 0.0.183 → 0.0.184

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.
@@ -13,7 +13,8 @@ async function findLocatorWithPagination(page, locator, options) {
13
13
  break;
14
14
  }
15
15
  const textExists = await locator
16
- .isVisible({ timeout: 10000 })
16
+ .waitFor({ state: 'visible', timeout: 5000 })
17
+ .then(() => true)
17
18
  .catch(() => false);
18
19
  if (textExists) {
19
20
  console.log(`Found locator "${locator}" on page ${pageNum + 1}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@camunda/e2e-test-suite",
3
- "version": "0.0.183",
3
+ "version": "0.0.184",
4
4
  "description": "End-to-end test helpers for Camunda 8",
5
5
  "repository": {
6
6
  "type": "git",