mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 13:49:23 -05:00
gnu: Add r-rselenium.
* gnu/packages/cran.scm (r-rselenium): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
719034c1a3
commit
170bffff55
1 changed files with 35 additions and 0 deletions
|
@ -22486,3 +22486,38 @@ (define-public r-wdman
|
||||||
more information). This package provides functions to download these binaries
|
more information). This package provides functions to download these binaries
|
||||||
and to manage processes involving them.")
|
and to manage processes involving them.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public r-rselenium
|
||||||
|
(package
|
||||||
|
(name "r-rselenium")
|
||||||
|
(version "1.7.7")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (cran-uri "RSelenium" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1xn5fdbzmq7b1f5fc9ls23g177bmnd8bn4p4d8aafr6z3jwkmfir"))))
|
||||||
|
(properties `((upstream-name . "RSelenium")))
|
||||||
|
(build-system r-build-system)
|
||||||
|
(propagated-inputs
|
||||||
|
`(("r-binman" ,r-binman)
|
||||||
|
("r-catools" ,r-catools)
|
||||||
|
("r-httr" ,r-httr)
|
||||||
|
("r-openssl" ,r-openssl)
|
||||||
|
("r-wdman" ,r-wdman)
|
||||||
|
("r-xml" ,r-xml)))
|
||||||
|
(native-inputs `(("r-knitr" ,r-knitr)))
|
||||||
|
(home-page "https://docs.ropensci.org/RSelenium/")
|
||||||
|
(synopsis "R bindings for Selenium WebDriver")
|
||||||
|
(description
|
||||||
|
"This package provides a set of R bindings for the Selenium 2.0
|
||||||
|
WebDriver (see @url{https://selenium.dev/documentation/en/} for more
|
||||||
|
information) using the @code{JsonWireProtocol} (see
|
||||||
|
@url{https://github.com/SeleniumHQ/selenium/wiki/JsonWireProtocol} for more
|
||||||
|
information). Selenium 2.0 WebDriver allows driving a web browser natively as
|
||||||
|
a user would either locally or on a remote machine using the Selenium server
|
||||||
|
it marks a leap forward in terms of web browser automation. Selenium
|
||||||
|
automates web browsers (commonly referred to as browsers). Using RSelenium
|
||||||
|
you can automate browsers locally or remotely.")
|
||||||
|
(license license:agpl3+)))
|
||||||
|
|
Loading…
Reference in a new issue