@camunda/e2e-test-suite 0.0.527 → 0.0.528
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.
|
@@ -660,7 +660,11 @@ class ModelerCreatePage {
|
|
|
660
660
|
await (0, sleep_1.sleep)(5000);
|
|
661
661
|
await marketplace.fillSearchForConnectorTextbox('REST Connector');
|
|
662
662
|
await marketplace.downloadConnectorToProject();
|
|
663
|
-
|
|
663
|
+
// Marketplace closes the change-type panel; reopen it so the
|
|
664
|
+
// newly installed connector appears before clicking.
|
|
665
|
+
await this.changeTypeButton.click({ force: true, timeout: 60000 });
|
|
666
|
+
await (0, test_1.expect)(this.restConnectorOption).toBeVisible({ timeout: 90000 });
|
|
667
|
+
await this.restConnectorOption.click({ timeout: 60000 });
|
|
664
668
|
}
|
|
665
669
|
return;
|
|
666
670
|
}
|
|
@@ -177,6 +177,9 @@ async function modelRestConnector(modelerCreatePage, connectorSettingsPage, conn
|
|
|
177
177
|
await connectorMarketplacePage.fillSearchForConnectorTextbox('REST Connector');
|
|
178
178
|
await (0, sleep_1.sleep)(10000);
|
|
179
179
|
await connectorMarketplacePage.downloadConnectorToProject();
|
|
180
|
+
// Marketplace closes the change-type panel; reopen it so the
|
|
181
|
+
// newly installed connector appears in the list.
|
|
182
|
+
await modelerCreatePage.clickChangeTypeButton();
|
|
180
183
|
}
|
|
181
184
|
await modelerCreatePage.clickRestConnectorOption();
|
|
182
185
|
await connectorSettingsPage.clickAuthenticationTab();
|