setTimeout(remDr, type = "page load", milliseconds = 10000, ...)
remoteDr.retry argument.remoteDr. This allows for chaining from this function to
other functions that take such an object as an argument. See examples for further details.
setTimeout Configure the amount of time that a particular type of operation can execute
for before they are aborted and a |Timeout| error is returned to the client.
## 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 ## ---------------------------------------------