knitr::opts_chunk$set( collapse = TRUE, comment = "#>" ) MAN_PATH <- "../man"
Technical Note
All members of
Chromote
andChromoteSession
objects which start with a capital letter (likeb$Page
,b$DOM
, andb$Browser
) correspond to domains from the Chrome DevTools Protocol, and are documented in the official CDP site. All members which start with a lower-case letter (likeb$screenshot
andb$close
) are not part of the Chrome DevTools Protocol, and are specific toChromote
andChromoteSession
.
Here is an example of how to use Chromote to find the position of a DOM element using DOM.getBoxModel.
x <- b$DOM$getDocument() x <- b$DOM$querySelector(x$root$nodeId, ".sidebar") x <- b$DOM$getBoxModel(x$nodeId) str(x) #> List of 1 #> $ model:List of 6 #> ..$ content:List of 8 #> .. ..$ : num 128 #> .. ..$ : int 28 #> .. ..$ : num 292 #> .. ..$ : int 28 #> .. ..$ : num 292 #> .. ..$ : num 988 #> .. ..$ : num 128 #> .. ..$ : num 988 #> ..$ padding:List of 8 #> .. ..$ : num 112 #> .. ..$ : int 28 #> .. ..$ : num 308 #> .. ..$ : int 28 #> .. ..$ : num 308 #> .. ..$ : num 988 #> .. ..$ : num 112 #> .. ..$ : num 988 #> ..$ border :List of 8 #> .. ..$ : num 112 #> .. ..$ : int 28 #> .. ..$ : num 308 #> .. ..$ : int 28 #> .. ..$ : num 308 #> .. ..$ : num 988 #> .. ..$ : num 112 #> .. ..$ : num 988 #> ..$ margin :List of 8 #> .. ..$ : int 15 #> .. ..$ : int 28 #> .. ..$ : num 308 #> .. ..$ : int 28 #> .. ..$ : num 308 #> .. ..$ : num 1030 #> .. ..$ : int 15 #> .. ..$ : num 1030 #> ..$ width : int 195 #> ..$ height : int 960
To create a new tab/window:
b1 <- b$new_session()
Once it's created, you can perform operations with the new tab without affecting the first one.
b1$view() b1$Page$navigate("https://github.com/rstudio/chromote") #> $frameId #> [1] "714439EBDD663E597658503C86F77B0B" #> #> $loaderId #> [1] "F39339CBA7D1ACB83618FEF40C3C7467"
To close a browser tab/window, you can run:
b1$close()
This is different from shutting down the browser process.
If you call b$close()
, the browser process will still be running, even if all tabs have been closed.
If all tabs have been closed, you can still create a new tab by calling b1$new_session()
.
To shut down the process, call:
b1$parent$close()
b1$parent
is a Chromote
object (as opposed to ChromoteSession
), which represents the browser as a whole.
This is explained in The Chromote object model.
The Chrome DevTools Protocol has two types of methods: commands and events.
The methods used in the previous examples are commands.
That is, they tell the browser to do something; the browser does it, and then sends back some data.
Learn more in vignette("commands-and-events")
.
There are two R6 classes that are used to represent the Chrome browser.
One is Chromote
, and the other is ChromoteSession
.
A Chromote
object represents the browser as a whole, and it can have multiple targets, which each represent a browser tab.
In the Chrome DevTools Protocol, each target can have one or more debugging sessions to control it.
A ChromoteSession
object represents a single session.
When a ChromoteSession
object is instantiated, a target is created, then a session is attached to that target, and the ChromoteSession
object represents the session.
(It is possible, though not very useful, to have multiple ChromoteSession
objects connected to the same target, each with a different session.)
A Chromote
object can have any number of ChromoteSession
objects as children.
It is not necessary to create a Chromote
object manually.
You can simply call:
b <- ChromoteSession$new()
and it will automatically create a Chromote
object if one has not already been created.
The Chromote package will then designate that Chromote
object as the default Chromote object for the package, so that any future calls to ChromoteSession$new()
will automatically use the same Chromote
.
This is so that it doesn't start a new browser for every ChromoteSession
object that is created.
In the Chrome DevTools Protocol, most commands can be sent to individual sessions using the ChromoteSession
object, but there are some commands which can only be sent to the overall browser, using the Chromote
object.
To access the parent Chromote
object from a ChromoteSession
, you can simply use $parent
:
b <- ChromoteSession$new() m <- b$parent
With a Chromote
object, you can get a list containing all the ChromoteSession
s, with $get_sessions()
:
m$get_sessions()
Normally, subsequent calls to ChromoteSession$new()
will use the existing Chromote
object.
However, if you want to start a new browser process, you can manually create a Chromote
object, then spawn a session from it; or you can pass the new Chromote
object to ChromoteSession$new()
:
cm <- Chromote$new() b1 <- cm$new_session() # Or: b1 <- ChromoteSession$new(parent = cm)
Note that if you use either of these methods, the new Chromote
object cm
will not be set as the default that is used by future calls to ChromoteSesssion$new()
.
See vignette("which-chrome")
for an example showing how you can set the default Chromote
object.
There are also the following classes which represent the browser at a lower level:
Browser
: This represents an instance of a browser that supports the Chrome DevTools Protocol. It contains information about how to communicate with the Chrome browser. A Chromote
object contains one of these.Chrome
: This is a subclass of Browser
that represents a local browser. It extends the Browser
class with a processx::process
object, which represents the browser's system process.ChromeRemote
: This is a subclass of Browser
that represents a browser running on a remote system.Calling b$debug_messages(TRUE)
will enable the printing of all the JSON messages sent between R and Chrome.
This can be very helpful for understanding how the Chrome DevTools Protocol works.
b <- ChromoteSession$new() b$parent$debug_messages(TRUE) b$Page$navigate("https://www.r-project.org/") #> SEND {"method":"Page.navigate","params":{"url":"https://www.r-project.org/"},"id":53,"sessionId":"12CB6B044A379DA0BDCFBBA55318247C"} #> $frameId #> [1] "BAAC175C67E55886207BADE1776E7B1F" #> #> $loaderId #> [1] "66DED3DF9403DA4A307444765FDE828E" # Disable debug messages b$parent$debug_messages(FALSE)
When Chromote starts a Chrome process, it calls Chrome$new()
.
This launches the Chrome process it using processx::process()
, and enables a supervisor for the process.
This means that if the R process stops, the supervisor will detect this and shut down any Chrome processes that were registered with the supervisor.
This prevents the proliferation of Chrome processes that are no longer needed.
The Chromote package will, by default, use a single Chrome process and a single Chromote
object, and each time ChromoteSession$new()
is called, it will spawn them from the Chromote
object.
See The Chromote object model for more information.
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.