Skip to content

Commit 5ef2b36

Browse files
committed
go_back timeout was way too short
1 parent b4a8776 commit 5ef2b36

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

browser_use/browser/session.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2742,7 +2742,7 @@ async def navigate_to(self, url: str):
27422742

27432743
page = await self.get_current_page()
27442744
try:
2745-
await asyncio.wait_for(page.evaluate('1'), timeout=1)
2745+
await asyncio.wait_for(page.evaluate('1'), timeout=3)
27462746
except Exception as e:
27472747
# new tab to recover
27482748
self.logger.warning(f'🚨 Page {_log_pretty_url(normalized_url)} is unresponsive, creating new tab...')

0 commit comments

Comments
 (0)