open_url {selenider} | R Documentation |
Open a URL
Description
Navigate the browser to specified URL, waiting until the page is considered open before finishing.
Usage
open_url(url, timeout = 60, session = NULL)
Arguments
url |
The URL to navigate to: a string. |
timeout |
The maximum time to wait for the page to load, in seconds. |
session |
A |
Value
The session object, invisibly.
See Also
Other global actions:
back()
,
current_url()
,
execute_js_fn()
,
get_page_source()
,
reload()
,
take_screenshot()
Examples
session <- selenider_session()
open_url("https://r-project.org")
# Or:
open_url(session = session, "https://r-project.org")
[Package selenider version 0.4.0 Index]