Merge pull request #616 from getmaxun/fix-timeout
fix: increase timeout on url change
This commit is contained in:
@@ -386,7 +386,7 @@ const handleChangeUrl = async (generator: WorkflowGenerator, page: Page, url: st
|
||||
if (url) {
|
||||
await generator.onChangeUrl(url, page);
|
||||
try {
|
||||
await page.goto(url, { waitUntil: 'networkidle', timeout: 10000 });
|
||||
await page.goto(url, { waitUntil: 'networkidle', timeout: 100000 });
|
||||
logger.log('debug', `Went to ${url}`);
|
||||
} catch (e) {
|
||||
const { message } = e as Error;
|
||||
|
||||
Reference in New Issue
Block a user