Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/narada/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "narada"
version = "0.1.52"
version = "0.1.53a1"
description = "Python client SDK for Narada"
license = "Apache-2.0"
readme = "README.md"
Expand Down
6 changes: 3 additions & 3 deletions packages/narada/src/narada/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ async def _initialize_cloud_browser_window(
# Navigate to login URL (provided by backend with custom token)
context = browser.contexts[0]
initialization_page = context.pages[0]
await initialization_page.goto(login_url, timeout=20_000)
await initialization_page.goto(login_url, timeout=15_000)

# Wait for browser window ID. The extension can take a bit to be installed, so we retry a
# few times.
Expand All @@ -289,7 +289,7 @@ async def _initialize_cloud_browser_window(
browser_window_id = await self._wait_for_browser_window_id(
initialization_page,
config,
timeout=10_000,
timeout=30_000,
)
break
except NaradaExtensionMissingError:
Expand All @@ -302,7 +302,7 @@ async def _initialize_cloud_browser_window(
raise
# If browser window ID is not found, reload the page and try again
# try to go to the login URL again (with customToken query param)
await initialization_page.goto(login_url, timeout=20_000)
await initialization_page.goto(login_url, timeout=15_000)

cloud_window = CloudBrowserWindow(
browser_window_id=browser_window_id,
Expand Down
2 changes: 1 addition & 1 deletion uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading