Navigate browser windows to specific URLs programmatically using the Narada Python SDK
go_to_url
method provides a simple, reliable way to navigate browser windows to specific URLs programmatically. Use this method to set up automation workflows that need to start from specific web pages or navigate between different sites during task execution.
go_to_url
method waits for the navigation to complete before returning. This makes it useful for setting up initial page states or navigating between pages in multi-step workflows.None
, uses the default system timeout.None
and completes when the navigation is successful.
new_tab=True
strategically to keep important pages open for referencego_to_url
method can raise the following exceptions:
NaradaTimeoutError
NaradaError
go_to_url
method works seamlessly with other Window methods:
go_to_url
method waits for the page to fully load before returning. For pages with heavy JavaScript or many resources, consider using appropriate timeout values to avoid long wait times.