testaro 5.11.3 → 5.11.4
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.
- package/package.json +1 -1
- package/run.js +2 -2
- package/tests/title.js +4 -1
package/package.json
CHANGED
package/run.js
CHANGED
|
@@ -1082,8 +1082,8 @@ const doActs = async (report, actIndex, page) => {
|
|
|
1082
1082
|
// Click the link and wait for the resulting page event.
|
|
1083
1083
|
try {
|
|
1084
1084
|
const [newPage] = await Promise.all([
|
|
1085
|
-
page.context().waitForEvent('page', {timeout:
|
|
1086
|
-
selection.click({timeout:
|
|
1085
|
+
page.context().waitForEvent('page', {timeout: 7000}),
|
|
1086
|
+
selection.click({timeout: 4000})
|
|
1087
1087
|
]);
|
|
1088
1088
|
// Wait for the new page to load.
|
|
1089
1089
|
await newPage.waitForLoadState('domcontentloaded', {timeout: 10000});
|