@camunda/e2e-test-suite 0.0.184 → 0.0.186
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.
|
@@ -26,13 +26,9 @@ class TaskProcessesPage {
|
|
|
26
26
|
}
|
|
27
27
|
async startProcess(name) {
|
|
28
28
|
const found = await (0, UtilitiesPage_1.findTextWithPagination)(this.page, name, 60000, async () => {
|
|
29
|
-
|
|
30
|
-
.locator('
|
|
31
|
-
.filter({
|
|
32
|
-
hasText: new RegExp(`^${name}.*Start process$`),
|
|
33
|
-
})
|
|
34
|
-
.nth(1);
|
|
35
|
-
await container
|
|
29
|
+
await this.page
|
|
30
|
+
.locator('[data-testid="process-tile"]')
|
|
31
|
+
.filter({ hasText: name })
|
|
36
32
|
.getByRole('button', { name: 'Start process' })
|
|
37
33
|
.click({ timeout: 60000 });
|
|
38
34
|
});
|
|
@@ -14,8 +14,7 @@ SM_8_9_1.test.describe('Console User Flow Tests', () => {
|
|
|
14
14
|
await (0, _setup_1.captureScreenshot)(page, testInfo);
|
|
15
15
|
await (0, _setup_1.captureFailureVideo)(page, testInfo);
|
|
16
16
|
});
|
|
17
|
-
|
|
18
|
-
SM_8_9_1.test.skip('Custom Tags', async ({ consoleHomePage, clusterPage }) => {
|
|
17
|
+
(0, SM_8_9_1.test)('Custom Tags', async ({ consoleHomePage, clusterPage }) => {
|
|
19
18
|
await SM_8_9_1.test.step('Navigate to Clusters', async () => {
|
|
20
19
|
await consoleHomePage.clickClusters();
|
|
21
20
|
});
|
|
@@ -27,8 +26,7 @@ SM_8_9_1.test.describe('Console User Flow Tests', () => {
|
|
|
27
26
|
await clusterPage.assertCustomTagsAreVisible(defaultTags);
|
|
28
27
|
});
|
|
29
28
|
});
|
|
30
|
-
|
|
31
|
-
SM_8_9_1.test.skip('Custom Properties', async ({ consoleHomePage, clusterPage, clusterDetailsPage, page, }) => {
|
|
29
|
+
(0, SM_8_9_1.test)('Custom Properties', async ({ consoleHomePage, clusterPage, clusterDetailsPage, page, }) => {
|
|
32
30
|
await SM_8_9_1.test.step('Navigate to Cluster Details', async () => {
|
|
33
31
|
await consoleHomePage.clickClusters();
|
|
34
32
|
await clusterPage.clickClusterLink();
|