Skip to content

Commit

Permalink
change read_html %>% get_hrml into get_html_rvest
Browse files Browse the repository at this point in the history
  • Loading branch information
m7pr committed Mar 21, 2024
1 parent 19e1787 commit 2a67909
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/TealAppDriver.R
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ TealAppDriver <- R6::R6Class( # nolint: object_name.
#'
#' @return The `character` vector.
get_attr = function(selector, attribute_name) {
rvest::read_html(self$get_html("html")) %>%
self$get_html_rvest("html") %>%
rvest::html_nodes(selector) %>%
rvest::html_attr(attribute_name)
}
Expand Down

0 comments on commit 2a67909

Please sign in to comment.