Start IE driver server
iedriver(
port = 4567L,
version = "latest",
check = TRUE,
loglevel = c("FATAL", "TRACE", "DEBUG", "INFO", "WARN", "ERROR"),
verbose = TRUE,
retcommand = FALSE,
...
)
Returns a list with named elements process
, output
,
error
, stop
, and log
.
process
is the object from calling process
.
output
and error
are the functions reading the latest
messages from "stdout" and "stderr" since the last call whereas log
is the function that reads all messages.
Lastly, stop
call the kill
method in
process
to the kill the process
.
Port to run on
what version of IE driver server to run. Default = "latest" which runs the most recent version. To see other version currently sourced run binman::list_versions("iedriverserver")
If TRUE check the versions of IE driver available. If new versions are available they will be downloaded.
Specifies the log level used by the server. Valid values are: TRACE, DEBUG, INFO, WARN, ERROR, and FATAL. Defaults to FATAL if not specified.
If TRUE, include status messages (if any)
If TRUE return only the command that would be passed
to process
pass additional options to the driver
if (FALSE) {
ieDrv <- iedriver()
ieDrv$output()
ieDrv$stop()
}
Run the code above in your browser using DataLab