@camunda/e2e-test-suite 0.0.280 → 0.0.282
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.
package/README.md
CHANGED
|
@@ -53,7 +53,17 @@ GitHub Actions can be used to facilitate testing across various cluster versions
|
|
|
53
53
|
|
|
54
54
|
#### SaaS
|
|
55
55
|
|
|
56
|
-
For SaaS, a test run can be manually triggered for specific minor versions and their associated cluster generation. This can be done through the [SaaS On-Demand GitHub Action](https://github.com/camunda/c8-cross-component-e2e-tests/actions/workflows/playwright_saas_manual.yml).
|
|
56
|
+
For SaaS, a test run can be manually triggered for specific minor versions and their associated cluster generation. This can be done through the [SaaS On-Demand GitHub Action](https://github.com/camunda/c8-cross-component-e2e-tests/actions/workflows/playwright_saas_manual.yml). These tests run against the INT environment.
|
|
57
|
+
|
|
58
|
+
The workflow expects the following arguments:
|
|
59
|
+
|
|
60
|
+
| Argument | Description | Examples |
|
|
61
|
+
|-------------------------|----------------------------------------------------|--------------------------------------------|
|
|
62
|
+
| C8 Minor Version | Minor version on format `<major>.<minor>` |`8.9`, `8.8` |
|
|
63
|
+
| Cluster Generation Name | The full name of the cluster generation (not UUID) | `Camunda 8.8+gen16`, `Camunda 8.9.0-alpha5`|
|
|
64
|
+
|
|
65
|
+
> [!NOTE]
|
|
66
|
+
> The cluster generation name used in the workflow run must be part of the Stable, Internal Dev, QA, or Alpha channel for it to be testable. A generation can be added to a channel in the [Camunda Accounts dashboard](https://accounts.ultrawombat.com/consoleadmin/channels)
|
|
57
67
|
|
|
58
68
|
#### SM with Helm
|
|
59
69
|
|
|
@@ -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');
|