Commit b3f71bc1 authored by Travis Fischer's avatar Travis Fischer

feat: bump reload timeout

parent 8e0f32b4
...@@ -195,7 +195,8 @@ export class ChatGPTAPIBrowser { ...@@ -195,7 +195,8 @@ export class ChatGPTAPIBrowser {
try { try {
await maximizePage(this._page) await maximizePage(this._page)
await this._page.reload({ await this._page.reload({
waitUntil: 'networkidle0' waitUntil: 'networkidle0',
timeout: 2 * 60 * 1000 // 2 minutes
}) })
await minimizePage(this._page) await minimizePage(this._page)
} catch (err) { } catch (err) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment