rvest how to select a specific css node by id

后端 未结 3 1879
长情又很酷
长情又很酷 2021-02-07 11:36

I\'m trying to use the rvest package to scrape data from a web page. In a simple format, the html code looks like this:

3条回答
  •  粉色の甜心
    2021-02-07 12:04

    This will work just fine with straight CSS selectors:

    library(rvest)
    
    doc <- '
    ' pg <- html(doc) html_attr(html_nodes(pg, "div > input:first-of-type"), "value") ## [1] "123"

提交回复
热议问题