Rvest html_nodes span div and Xpath
问题 I am trying to scrape a website by reading XPath code. When I go in the developer section, I see those lines: <span class="js-bestRate-show" data-crid="11232895" data-id="928723" data-abc="0602524361510" data-referecenceta="44205406" data-catalog="1"> I would like to scrape all values for data-abc. Let's say each element on the site is a movie, so I would like to scrape all data-abc elements for each movie of the page. I would like to do so using Rvest package with R. Below are two different