@camunda/e2e-test-suite 0.0.308 → 0.0.309
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.
|
@@ -154,7 +154,7 @@ class AppsPage {
|
|
|
154
154
|
console.warn(`Click attempt ${retries + 1} failed: ${error}`);
|
|
155
155
|
await (0, UtilitiesPage_1.waitForLoadingToFinish)(this.page);
|
|
156
156
|
if (!this.page.isClosed()) {
|
|
157
|
-
await this.page.reload();
|
|
157
|
+
await this.page.reload({ waitUntil: 'domcontentloaded' });
|
|
158
158
|
}
|
|
159
159
|
await (0, sleep_1.sleep)(20000);
|
|
160
160
|
}
|
|
@@ -212,7 +212,9 @@ class ModelerCreatePage {
|
|
|
212
212
|
this.formLinkingTypeDropdown = page.getByLabel('Type');
|
|
213
213
|
this.formLinkTypeOptions = page.locator('#bio-properties-panel-formType');
|
|
214
214
|
this.addFormJsonConfigurationInput = page.getByLabel('Form JSON configuration');
|
|
215
|
-
this.closeButton = page
|
|
215
|
+
this.closeButton = page
|
|
216
|
+
.getByRole('dialog')
|
|
217
|
+
.getByRole('button', { name: 'Close' });
|
|
216
218
|
this.publicationSection = page.locator('[data-group-id="group-process-publication"]');
|
|
217
219
|
this.publicAccessToggle = page.getByRole('switch', {
|
|
218
220
|
name: 'Toggle public access',
|