@camunda/e2e-test-suite 0.0.529 → 0.0.530
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,6 +13,7 @@ declare class OperateProcessesPage {
|
|
|
13
13
|
readonly processInstanceKeyTextBox: Locator;
|
|
14
14
|
private readonly whatsNewPopUp;
|
|
15
15
|
private readonly gotItButton;
|
|
16
|
+
private readonly processesTabLink;
|
|
16
17
|
constructor(page: Page);
|
|
17
18
|
private checkCheckbox;
|
|
18
19
|
private uncheckCheckbox;
|
|
@@ -19,9 +19,11 @@ class OperateProcessesPage {
|
|
|
19
19
|
processInstanceKeyTextBox;
|
|
20
20
|
whatsNewPopUp;
|
|
21
21
|
gotItButton;
|
|
22
|
+
processesTabLink;
|
|
22
23
|
constructor(page) {
|
|
23
24
|
this.page = page;
|
|
24
25
|
this.processResultCount = page.getByTestId('result-count');
|
|
26
|
+
this.processesTabLink = page.getByRole('link', { name: 'Processes' });
|
|
25
27
|
this.processActiveCheckbox = page
|
|
26
28
|
.locator('label')
|
|
27
29
|
.filter({ hasText: 'Active' });
|
|
@@ -206,7 +208,9 @@ class OperateProcessesPage {
|
|
|
206
208
|
return;
|
|
207
209
|
}
|
|
208
210
|
const MAX_ATTEMPTS = 30;
|
|
209
|
-
const TOTAL_TIMEOUT_MS =
|
|
211
|
+
const TOTAL_TIMEOUT_MS = env_1.isOpenSearch
|
|
212
|
+
? constants_1._1_MINUTE_IN_MS * 10
|
|
213
|
+
: constants_1._1_MINUTE_IN_MS * 6;
|
|
210
214
|
let attempt = 0;
|
|
211
215
|
let lastError;
|
|
212
216
|
const startTime = Date.now();
|
|
@@ -239,6 +243,22 @@ class OperateProcessesPage {
|
|
|
239
243
|
.waitForLoadState('networkidle', { timeout: 30000 })
|
|
240
244
|
.catch(() => console.log('waitForLoadState after Operate navigation timed out, continuing...'));
|
|
241
245
|
}
|
|
246
|
+
// Operate may land on the Dashboard after reload even when the captured
|
|
247
|
+
// URL pointed at the Processes view. The filter checkboxes only exist on
|
|
248
|
+
// the Processes tab, so navigate there explicitly before applying filters.
|
|
249
|
+
try {
|
|
250
|
+
await this.processesTabLink.waitFor({
|
|
251
|
+
state: 'visible',
|
|
252
|
+
timeout: constants_1._1_SECOND_IN_MS * 10,
|
|
253
|
+
});
|
|
254
|
+
await this.processesTabLink.click({ timeout: constants_1._1_SECOND_IN_MS * 10 });
|
|
255
|
+
await this.page
|
|
256
|
+
.waitForLoadState('networkidle', { timeout: 30000 })
|
|
257
|
+
.catch(() => { });
|
|
258
|
+
}
|
|
259
|
+
catch (navErr) {
|
|
260
|
+
console.log(`Processes tab click failed after reload: ${String(navErr)}`);
|
|
261
|
+
}
|
|
242
262
|
// Re-apply checkbox filter lost after reload
|
|
243
263
|
try {
|
|
244
264
|
await this.applyProcessStateFilter(type);
|