@camunda/e2e-test-suite 0.0.574 → 0.0.575
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.
|
@@ -173,9 +173,16 @@ class ModelerHomePage {
|
|
|
173
173
|
}
|
|
174
174
|
async clickCrossComponentProjectFolder() {
|
|
175
175
|
await (0, clickLocatorWithRetry_1.clickLocatorWithRetry)(this.page, this.crossComponentProjectFolder, {
|
|
176
|
+
visibilityTimeout: 60000,
|
|
177
|
+
totalTimeout: 180000,
|
|
178
|
+
maxRetries: 5,
|
|
176
179
|
preAction: async () => {
|
|
177
180
|
await this.clickMessageBanner();
|
|
178
181
|
},
|
|
182
|
+
postAction: async () => {
|
|
183
|
+
await this.page.reload();
|
|
184
|
+
await this.page.waitForLoadState('domcontentloaded');
|
|
185
|
+
},
|
|
179
186
|
});
|
|
180
187
|
}
|
|
181
188
|
async createCrossComponentProjectFolder() {
|
|
@@ -121,9 +121,16 @@ class ModelerHomePage {
|
|
|
121
121
|
}
|
|
122
122
|
async clickCrossComponentProjectFolder() {
|
|
123
123
|
await (0, clickLocatorWithRetry_1.clickLocatorWithRetry)(this.page, this.crossComponentProjectFolder, {
|
|
124
|
+
visibilityTimeout: 60000,
|
|
125
|
+
totalTimeout: 180000,
|
|
126
|
+
maxRetries: 5,
|
|
124
127
|
preAction: async () => {
|
|
125
128
|
await this.clickMessageBanner();
|
|
126
129
|
},
|
|
130
|
+
postAction: async () => {
|
|
131
|
+
await this.page.reload();
|
|
132
|
+
await this.page.waitForLoadState('domcontentloaded');
|
|
133
|
+
},
|
|
127
134
|
});
|
|
128
135
|
}
|
|
129
136
|
async createForm(formName) {
|
|
@@ -173,9 +173,16 @@ class ModelerHomePage {
|
|
|
173
173
|
}
|
|
174
174
|
async clickCrossComponentProjectFolder() {
|
|
175
175
|
await (0, clickLocatorWithRetry_1.clickLocatorWithRetry)(this.page, this.crossComponentProjectFolder, {
|
|
176
|
+
visibilityTimeout: 60000,
|
|
177
|
+
totalTimeout: 180000,
|
|
178
|
+
maxRetries: 5,
|
|
176
179
|
preAction: async () => {
|
|
177
180
|
await this.clickMessageBanner();
|
|
178
181
|
},
|
|
182
|
+
postAction: async () => {
|
|
183
|
+
await this.page.reload();
|
|
184
|
+
await this.page.waitForLoadState('domcontentloaded');
|
|
185
|
+
},
|
|
179
186
|
});
|
|
180
187
|
}
|
|
181
188
|
async createCrossComponentProjectFolder() {
|