@camunda/e2e-test-suite 0.0.790 → 0.0.791
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.
|
@@ -115,12 +115,18 @@ class ConnectorSettingsPage {
|
|
|
115
115
|
await (0, test_1.expect)(this.page.getByText('Bearer token must not be empty.')).not.toBeVisible({ timeout: 30000 });
|
|
116
116
|
}
|
|
117
117
|
async clickAuthenticationTab() {
|
|
118
|
+
// Wait for the connector settings panel to fully render before clicking
|
|
119
|
+
// the Authentication tab. The panel can take longer to appear after
|
|
120
|
+
// selecting a REST Connector on a second diagram creation within the
|
|
121
|
+
// same test run, causing intermittent TimeoutErrors.
|
|
122
|
+
await (0, test_1.expect)(this.authenticationTab).toBeVisible({ timeout: 60000 });
|
|
118
123
|
await this.authenticationTab.click({ timeout: 60000 });
|
|
119
124
|
}
|
|
120
125
|
async clickOutputMappingTab() {
|
|
121
126
|
await this.outputMappingTab.click({ timeout: 60000 });
|
|
122
127
|
}
|
|
123
128
|
async clickHTTPEndpointTab() {
|
|
129
|
+
await (0, test_1.expect)(this.httpEndpointTab).toBeVisible({ timeout: 60000 });
|
|
124
130
|
await this.httpEndpointTab.click({ timeout: 60000 });
|
|
125
131
|
}
|
|
126
132
|
async clickCorrelationTab() {
|