Using rvest to scrape a website - Selecting html node?
问题 I have a question about my latest r vest scrape. I want to scrape this page (and some other stocks as well): http://www.finviz.com/quote.ashx?t=AA&ty=c&p=d&b=1 I need a list of the Market Capital, which is the first box in the second line. This list should contain approx 50-100 stocks. I am using rvest for that. library(rvest) html = read_html("http://www.finviz.com/quote.ashx?t=A") cast = html_nodes(html, "table-dark-row") The problem is, I can not get around the html_nodes. Any idea about