@camunda/e2e-test-suite 0.0.256 → 0.0.257
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.
|
@@ -238,7 +238,10 @@ class ModelerCreatePage {
|
|
|
238
238
|
await this.elemendIdInput.click();
|
|
239
239
|
}
|
|
240
240
|
async fillElementIdInput(id) {
|
|
241
|
+
await (0, test_1.expect)(this.elemendIdInput).toBeVisible();
|
|
241
242
|
await this.elemendIdInput.fill(id);
|
|
243
|
+
await (0, test_1.expect)(this.elemendIdInput).toHaveValue(id);
|
|
244
|
+
await (0, sleep_1.sleep)(1000);
|
|
242
245
|
}
|
|
243
246
|
async clickStartEventElement() {
|
|
244
247
|
await this.startEventElement.click({ force: true });
|
|
@@ -33,6 +33,8 @@ class PlayPage {
|
|
|
33
33
|
});
|
|
34
34
|
}
|
|
35
35
|
async clickCompleteJobButton() {
|
|
36
|
+
await (0, test_1.expect)(this.completeJobButton).toBeVisible({ timeout: 60000 });
|
|
37
|
+
await (0, test_1.expect)(this.completeJobButton).toBeEnabled({ timeout: 60000 });
|
|
36
38
|
await this.completeJobButton.click();
|
|
37
39
|
}
|
|
38
40
|
async clickStartInstanceButton() {
|