@camunda/e2e-test-suite 0.0.281 → 0.0.283
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.
|
@@ -530,11 +530,13 @@ class ModelerCreatePage {
|
|
|
530
530
|
}
|
|
531
531
|
async clickSecondPlacedGateway() {
|
|
532
532
|
try {
|
|
533
|
+
await (0, test_1.expect)(this.secondPlacedGateway).toBeVisible({ timeout: 30000 });
|
|
533
534
|
await this.secondPlacedGateway.click({ timeout: 3000 });
|
|
534
535
|
await this.appendElementButton.isVisible({ timeout: 3000 });
|
|
535
536
|
}
|
|
536
537
|
catch (error) {
|
|
537
538
|
await this.page.reload();
|
|
539
|
+
await (0, test_1.expect)(this.secondPlacedGateway).toBeVisible({ timeout: 30000 });
|
|
538
540
|
await this.secondPlacedGateway.click({ timeout: 3000 });
|
|
539
541
|
}
|
|
540
542
|
}
|
|
@@ -792,6 +794,7 @@ class ModelerCreatePage {
|
|
|
792
794
|
}
|
|
793
795
|
async fillPriorityInput(priority) {
|
|
794
796
|
await this.priorityInput.fill(priority, { timeout: 60000 });
|
|
797
|
+
await (0, sleep_1.sleep)(1000);
|
|
795
798
|
}
|
|
796
799
|
async clickCanvas() {
|
|
797
800
|
await this.canvas.click({ timeout: 60000 });
|
|
@@ -901,9 +904,11 @@ class ModelerCreatePage {
|
|
|
901
904
|
}
|
|
902
905
|
async fillCandidateGroupsInput(candidateGroup) {
|
|
903
906
|
await this.candidateGroupsInput.fill(candidateGroup, { timeout: 60000 });
|
|
907
|
+
await (0, sleep_1.sleep)(1000);
|
|
904
908
|
}
|
|
905
909
|
async clickAssigneeInput() {
|
|
906
910
|
await this.assigneeInput.click({ timeout: 60000 });
|
|
911
|
+
await (0, sleep_1.sleep)(1000);
|
|
907
912
|
}
|
|
908
913
|
async fillAssigneeInput(name) {
|
|
909
914
|
await this.assigneeInput.fill(name, { timeout: 60000 });
|
|
@@ -75,6 +75,7 @@ class ModelerHomePage {
|
|
|
75
75
|
await this.createNewProjectButton.click();
|
|
76
76
|
}
|
|
77
77
|
async enterNewProjectName(name) {
|
|
78
|
+
await (0, sleep_1.sleep)(1000);
|
|
78
79
|
await this.projectNameInput.click({ timeout: 60000 });
|
|
79
80
|
await this.projectNameInput.fill(name);
|
|
80
81
|
await this.projectNameInput.press('Enter');
|
|
@@ -148,6 +149,7 @@ class ModelerHomePage {
|
|
|
148
149
|
await this.formTemplateOption.click();
|
|
149
150
|
}
|
|
150
151
|
async enterFormName(name) {
|
|
152
|
+
await (0, sleep_1.sleep)(1000);
|
|
151
153
|
await this.formNameInput.click({ timeout: 60000 });
|
|
152
154
|
await this.formNameInput.fill(name);
|
|
153
155
|
await this.formNameInput.press('Enter');
|