@camunda/e2e-test-suite 0.0.334 → 0.0.336
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.
|
@@ -25,6 +25,7 @@ class KeycloakAdminPage {
|
|
|
25
25
|
const realmSelector = this.page.getByTestId('nav-item-realms');
|
|
26
26
|
await realmSelector.click();
|
|
27
27
|
const searchField = this.page.getByTestId('selectRealminput');
|
|
28
|
+
await (0, test_1.expect)(searchField).toBeVisible({ timeout: 30000 });
|
|
28
29
|
await searchField.click();
|
|
29
30
|
await this.page
|
|
30
31
|
.getByPlaceholder('Search')
|
|
@@ -56,7 +57,7 @@ class KeycloakAdminPage {
|
|
|
56
57
|
async fillPassword(password) {
|
|
57
58
|
await (0, test_1.expect)(this.credentialsTab).toBeVisible();
|
|
58
59
|
await this.credentialsTab.click();
|
|
59
|
-
await (0, test_1.expect)(this.noCredentialsEmptyAction).toBeVisible();
|
|
60
|
+
await (0, test_1.expect)(this.noCredentialsEmptyAction).toBeVisible({ timeout: 30000 });
|
|
60
61
|
await this.noCredentialsEmptyAction.click();
|
|
61
62
|
await (0, test_1.expect)(this.passwordField).toBeVisible();
|
|
62
63
|
await this.passwordField.fill(password);
|
|
@@ -85,7 +85,7 @@ SM_8_8_1.test.describe.parallel('Smoke Tests', () => {
|
|
|
85
85
|
await SM_8_8_1.test.step('View Process Instance in Operate, complete User Task in Tasklist & assert process complete in Operate and Assert Process has been successfully imported in Optimize', async () => {
|
|
86
86
|
await navigationPage.goToOperate();
|
|
87
87
|
await operateHomePage.clickProcessesTab();
|
|
88
|
-
await operateProcessesPage.clickProcessInstanceLink(processName);
|
|
88
|
+
await operateProcessesPage.clickProcessInstanceLink(processName, 'active');
|
|
89
89
|
let result = await operateProcessInstancePage.assertEitherIncidentOrActiveIconVisible();
|
|
90
90
|
(0, test_1.expect)(result).toBe('active');
|
|
91
91
|
await navigationPage.goToTasklist();
|