@camunda/e2e-test-suite 0.0.409 → 0.0.410
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.
|
@@ -872,7 +872,12 @@ class ModelerCreatePage {
|
|
|
872
872
|
// Reload to pick up newly-downloaded connector templates, then
|
|
873
873
|
// re-select the intermediate event element and open the type picker.
|
|
874
874
|
await this.page.reload();
|
|
875
|
-
await this.
|
|
875
|
+
await this.page.waitForLoadState('domcontentloaded');
|
|
876
|
+
await this.secondElement.waitFor({
|
|
877
|
+
state: 'visible',
|
|
878
|
+
timeout: 30000,
|
|
879
|
+
});
|
|
880
|
+
await this.secondElement.click({ timeout: 30000 });
|
|
876
881
|
await this.changeTypeButton.click({ force: true, timeout: 30000 });
|
|
877
882
|
}
|
|
878
883
|
// Use a longer timeout to allow the connector to finish registering
|
|
@@ -187,7 +187,7 @@ SM_8_8_1.test.describe('Connectors User Flow Tests @tasklistV2', () => {
|
|
|
187
187
|
await modelerCreatePage.clickIntermediateBoundaryEvent();
|
|
188
188
|
await modelerCreatePage.clickChangeTypeButton();
|
|
189
189
|
try {
|
|
190
|
-
await (0, test_1.expect)(modelerCreatePage.
|
|
190
|
+
await (0, test_1.expect)(modelerCreatePage.intermediateWebhookConnectorOption).toBeVisible({
|
|
191
191
|
timeout: 15000,
|
|
192
192
|
});
|
|
193
193
|
}
|