testaro 5.11.2 → 5.11.3

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/run.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "testaro",
3
- "version": "5.11.2",
3
+ "version": "5.11.3",
4
4
  "description": "Automation of accessibility testing",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/run.js CHANGED
@@ -1111,7 +1111,7 @@ const doActs = async (report, actIndex, page) => {
1111
1111
  try {
1112
1112
  await selection.click({timeout: 5000});
1113
1113
  // Wait for the new content to load.
1114
- await page.waitForLoadState('domcontentloaded', {timeout: 4000});
1114
+ await page.waitForLoadState('domcontentloaded', {timeout: 6000});
1115
1115
  act.result.success = true;
1116
1116
  act.result.move = 'clicked';
1117
1117
  act.result.newURL = page.url();