Description Usage Arguments Value See Also Examples
newSession
The server should attempt to create a session that
most closely matches the desired and required capabilities. Required
capabilities have higher priority than desired capabilities and must
be set for the session to be created.
1 | newSession(remDr, ...)
|
remDr |
An object of class "rDriver". A remote driver object see
|
... |
Additonal function arguments - Currently passes the
|
invisible(remDr): An object of class "rDriver" is invisibly
returned. A remote driver object see remoteDr
. This
allows for chaining from this function to other functions that take
such an object as an argument. See examples for further details.
Other sessions functions: deleteSession
,
getTimeouts
, setTimeouts
,
status
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | ## Not run:
# start a driver without opening a browser
remDr <- remoteDr(newSession = FALSE)
# open a broswer
remDr %>% newSession
# set timeout on waiting for elements
remDr %>% setTimeout(type = "implicit", 5000)
# close Session
remDr %>% deleteSession
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.