selenider

所属分类:R语言
开发工具:R
文件大小:0KB
下载次数:0
上传日期:2023-10-24 21:11:56
上 传 者sh-1993
说明:  RSelenium的简洁、惰性和异步包装器,
(Concise, lazy and asynchronous wrapper for RSelenium,)

文件列表:
.Rbuildignore (249, 2023-12-02)
DESCRIPTION (1404, 2023-12-02)
LICENSE (47, 2023-12-02)
LICENSE.md (1076, 2023-12-02)
NAMESPACE (3247, 2023-12-02)
NEWS.md (1791, 2023-12-02)
R/ (0, 2023-12-02)
R/aaa_env.R (5354, 2023-12-02)
R/actions.R (50852, 2023-12-02)
R/api.R (2181, 2023-12-02)
R/cache.R (3732, 2023-12-02)
R/children.R (4788, 2023-12-02)
R/conditions.R (13554, 2023-12-02)
R/docs.R (513, 2023-12-02)
R/elem_filter.R (8391, 2023-12-02)
R/elem_flatten.R (4119, 2023-12-02)
R/empty_selenider_elements.R (569, 2023-12-02)
R/equal.R (2359, 2023-12-02)
R/eval_conditions.R (5782, 2023-12-02)
R/expect.R (25460, 2023-12-02)
R/expect_all.R (3979, 2023-12-02)
R/find_actual_element.R (7168, 2023-12-02)
R/find_browser_and_version.R (4549, 2023-12-02)
R/find_element.R (3499, 2023-12-02)
R/find_elements.R (3320, 2023-12-02)
R/flatmap.R (5538, 2023-12-02)
R/format.R (15683, 2023-12-02)
R/get_actual_element.R (6087, 2023-12-02)
R/global_actions.R (8482, 2023-12-02)
R/import-standalone-obj-type.R (8589, 2023-12-02)
R/import-standalone-types-check.R (12174, 2023-12-02)
R/js.R (16889, 2023-12-02)
... ...

# selenider [![R-CMD-check](https://github.com/ashbythorpe/selenider/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/ashbythorpe/selenider/actions/workflows/R-CMD-check.yaml) [![Codecov test coverage](https://codecov.io/gh/ashbythorpe/selenider/branch/main/graph/badge.svg)](https://app.codecov.io/gh/ashbythorpe/selenider?branch=main) [![CRAN status](https://www.r-pkg.org/badges/version/selenider)](https://CRAN.R-project.org/package=selenider) Traditionally, automating a web browser is often unreliable, especially when using R. Programmers are forced to write verbose code, utilising inconsistent workarounds (such as using `Sys.sleep()` to wait for something to happen). selenider aims to make web testing and scraping in R much simpler, providing a wrapper for either [chromote](https://rstudio.github.io/chromote/) or [selenium](https://ashbythorpe.github.io/selenium-r/). It is inspired by Java’s [Selenide](https://selenide.org/) and Python’s [Selene](https://yashaka.github.io/selene/). Code reliability and reproducibility are essential when writing R code. selenider provides features to make your scripts work every time they are run, without any extra code: - Lazy elements: selenider will only try to find an element on the page when it is absolutely necessary. Your definitions of HTML elements are separated from their existence on the page, only allowing the two to converge when absolutely necessary. In selenider, HTML elements are stored as the directions to the element on the page, rather than the element itself. This is much more reliable than the alternative since the webpage can constantly change, resulting in elements becoming invalid between their creation and use (e.g.the dreaded `StaleElementReferenceException` in Selenium). - Automatic waiting: selenider will automatically wait for your code to work (e.g.waiting for an input to exist and be clickable before actually clicking it), allowing you to write scripts as if your website always responds instantly to your interactions. selenider’s other main focus is its API. Its design choices result in concise yet expressive code that is easy to read and easy to write: - A global session object results in shorter, more declarative code. It also allows the session to be created at the beginning of your script or test, and closed at the end. - All functions are designed for use with the pipe operator (`|>` or `%>%`); elements can be selected, tested and operated on in a single pipeline. - `elem_expect()` is a powerful way to specify test expectations, with a simple but extensible syntax and informative error messages. - selenider is compatible with automated testing frameworks like [testthat](https://testthat.r-lib.org) and [shinytest2](https://rstudio.github.io/shinytest2/). ## Installation ``` r # Install selenider from CRAN install.packages("selenider") # Or the development version from Github # install.packages("remotes") remotes::install_github("ashbythorpe/selenider") ``` Additionally, you must install [chromote](https://rstudio.github.io/chromote/) or [selenium](https://ashbythorpe.github.io/selenium-r/). We recommend chromote, as it is quicker and easier to get up and running. ``` r # Either: install.packages("chromote") # Or: install.packages("selenium") ``` If you are using selenium, you must also have [Java](https://www.java.com/) installed. Finally, you must have a web browser installed. For chromote, [Google Chrome](https://www.google.com/chrome/) is required. For selenium, any browser can be used, but [Firefox](https://www.mozilla.org/firefox/new/) is recommended. ## Usage ``` r library(selenider) ``` The following code navigates to the [R project website](https://www.r-project.org/), finds the link to the CRAN mirror list, checks that the link is correct, and clicks the link element. ``` r open_url("https://www.r-project.org/") s(".row") |> find_element("div") |> find_elements("a") |> elem_find(has_text("CRAN")) |> elem_expect(attr_contains("href", "cran.r-project.org")) |> elem_click() ``` Now that we’re in the mirror list page, let’s find the link to every CRAN mirror in the UK. ``` r s("dl") |> find_elements("dt") |> elem_find(has_text("UK")) |> find_element(xpath = "./following-sibling::dd") |> find_elements("tr") |> elem_expect(has_at_least(1)) |> as.list() |> lapply( \(x) x |> find_element("a") |> elem_attr("href") ) #> [[1]] #> [1] "https://www.stats.bris.ac.uk/R/" #> #> [[2]] #> [1] "https://cran.ma.imperial.ac.uk/" #> #> [[3]] #> [1] "https://anorien.csc.warwick.ac.uk/CRAN/" ``` ## Vignettes - Get started with selenider, and learn the basics: `vignette("selenider")`. - Use selenider with testthat, shinytest2 and Github Actions: `vignette("unit-testing", package = "selenider")`. - Use selenider with rvest: `vignette("with-rvest", package = "selenider")`

近期下载者

相关文件


收藏者