@camunda/e2e-test-suite 0.0.182 → 0.0.183
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.
|
@@ -11,6 +11,7 @@ const UtilitiesPage_3 = require("../../pages/8.9/UtilitiesPage");
|
|
|
11
11
|
const apiHelpers_1 = require("../../utils/apiHelpers");
|
|
12
12
|
const expectLocatorWithRetry_1 = require("../../utils/assertionHelpers/expectLocatorWithRetry");
|
|
13
13
|
const users_1 = require("../../utils/users");
|
|
14
|
+
const connectorSecrets_1 = require("../../utils/connectorSecrets");
|
|
14
15
|
const testUser = (0, users_1.getTestUser)('seventeenthUser');
|
|
15
16
|
_8_9_1.test.describe.configure({ mode: 'parallel' });
|
|
16
17
|
_8_9_1.test.describe('Connectors User Flow Tests @tasklistV2', () => {
|
|
@@ -163,9 +164,15 @@ _8_9_1.test.describe('Connectors User Flow Tests @tasklistV2', () => {
|
|
|
163
164
|
await (0, UtilitiesPage_1.assertLocatorVisibleWithRetry)(operateProcessInstancePage, operateProcessInstancePage.completedIcon, 'Completed icon', 60000);
|
|
164
165
|
});
|
|
165
166
|
});
|
|
166
|
-
(0, _8_9_1.test)('Connector Secrets User Flow - GCP', async ({ page, homePage, modelerHomePage, appsPage, modelerCreatePage, connectorSettingsPage, operateHomePage, operateProcessesPage, operateProcessInstancePage, }) => {
|
|
167
|
+
(0, _8_9_1.test)('Connector Secrets User Flow - GCP', async ({ page, homePage, modelerHomePage, appsPage, modelerCreatePage, connectorSettingsPage, operateHomePage, operateProcessesPage, operateProcessInstancePage, clusterPage, clusterSecretsPage, }) => {
|
|
167
168
|
_8_9_1.test.slow();
|
|
168
169
|
const processName = 'REST_Connector_Process' + (await (0, _setup_1.generateRandomStringAsync)(3));
|
|
170
|
+
await _8_9_1.test.step('Navigate to Connectors Secrets', async () => {
|
|
171
|
+
await homePage.clickClusters();
|
|
172
|
+
await clusterPage.clickClusterLink(defaultClusterName);
|
|
173
|
+
await clusterPage.clickConnectorSecretsTab(defaultClusterName);
|
|
174
|
+
await clusterSecretsPage.assertSecretsOrCreate(defaultClusterName, connectorSecrets_1.allConnectorSecrets['Connectors']);
|
|
175
|
+
});
|
|
169
176
|
await _8_9_1.test.step('Navigate to Web Modeler', async () => {
|
|
170
177
|
await (0, test_1.expect)(homePage.camundaComponentsButton).toBeVisible({
|
|
171
178
|
timeout: 20000,
|
|
@@ -185,6 +185,7 @@ _8_9_1.test.describe.parallel('RBA Enabled User Flows Test @tasklistV2', () => {
|
|
|
185
185
|
});
|
|
186
186
|
});
|
|
187
187
|
await _8_9_1.test.step('Navigate to Cross Component Test Project', async () => {
|
|
188
|
+
await homePage.clickSkipCustomization();
|
|
188
189
|
await modelerHomePage.createCrossComponentProjectFolder();
|
|
189
190
|
});
|
|
190
191
|
await _8_9_1.test.step('Create Two BPMN Diagrams with User Task and Start Process Instance', async () => {
|
|
@@ -395,6 +396,7 @@ _8_9_1.test.describe.parallel('RBA Enabled User Flows Test @tasklistV2', () => {
|
|
|
395
396
|
});
|
|
396
397
|
});
|
|
397
398
|
await _8_9_1.test.step('Navigate to Cross Component Test Project', async () => {
|
|
399
|
+
await homePage.clickSkipCustomization();
|
|
398
400
|
await modelerHomePage.createCrossComponentProjectFolder();
|
|
399
401
|
});
|
|
400
402
|
await _8_9_1.test.step('Create Two BPMN Diagrams with User Task and Start Process Instance', async () => {
|