@camunda/e2e-test-suite 0.0.247 → 0.0.248
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.
|
@@ -127,12 +127,14 @@ async function modelRestConnector(modelerCreatePage, connectorSettingsPage, conn
|
|
|
127
127
|
});
|
|
128
128
|
await connectorSettingsPage.clickResultVariableInput();
|
|
129
129
|
await connectorSettingsPage.fillResultVariableInput('result');
|
|
130
|
+
await (0, sleep_1.sleep)(5000);
|
|
130
131
|
}
|
|
131
132
|
await connectorSettingsPage.clickResultExpressionInput();
|
|
132
133
|
await connectorSettingsPage.fillResultExpressionInput(resultExpression);
|
|
134
|
+
await (0, sleep_1.sleep)(5000);
|
|
133
135
|
await modelerCreatePage.clickAppendElementButton();
|
|
134
136
|
await modelerCreatePage.clickAppendEndEventButton();
|
|
135
|
-
await (0, sleep_1.sleep)(
|
|
137
|
+
await (0, sleep_1.sleep)(10000); // trying to run the process to fast causes it to miss the process id
|
|
136
138
|
}
|
|
137
139
|
exports.modelRestConnector = modelRestConnector;
|
|
138
140
|
async function modelIntermediateWebhookConnector(modelerCreatePage, connectorMarketplacePage, processName, webhookId) {
|