@camunda/e2e-test-suite 0.0.333 → 0.0.335
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.
|
@@ -142,7 +142,7 @@ class IdentityTenantPage {
|
|
|
142
142
|
await (0, test_1.expect)(this.page.getByText(userEmail)).toBeVisible({ timeout: 30000 });
|
|
143
143
|
await this.page.getByText(userEmail).click();
|
|
144
144
|
await this.clickAssignUserFinalButton();
|
|
145
|
-
await (0, test_1.expect)(this.page.getByText('Users assigned')).toBeVisible({
|
|
145
|
+
await (0, test_1.expect)(this.page.getByText('Users assigned', { exact: true })).toBeVisible({
|
|
146
146
|
timeout: 60000,
|
|
147
147
|
});
|
|
148
148
|
}
|
|
@@ -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();
|