chrome_versions_list {chromote} | R Documentation |
List installed or available Chrome binary versions
Description
By default lists the installed Chrome versions in the chrome_versions_path_cache()
,
or list all Chrome versions available via Google's
Chrome for Testing
service.
Managed Chrome installations is an experimental feature introduced in chromote v0.5.0 and was inspired by similar features in playwright.
Usage
chrome_versions_list(
which = c("installed", "all"),
binary = c("all", "chrome", "chrome-headless-shell", "chromedriver"),
platform = NULL
)
Arguments
which |
Whether to list |
binary |
A character string specifying which binary to list. Defaults to
|
platform |
A character string specifying the platform(s) to list. If
|
Value
Returns a data.frame()
of Chrome for Testing versions with
columns: version
, revision
, binary
, platform
, url
(where the
binary can be downloaded), and–if which = "installed"
–the local path to
the binary in the chrome_versions_path_cache()
.
Examples
chrome_versions_list()