rvest how to select a specific css node by id

不问归期 提交于 2019-12-03 17:49:55

问题


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:

<div class="style">
   <input id="a" value="123">
   <input id="b">
</div>

I want to get the value 123 from the first input. I tried the following R code:

library(rvest)
url<-"xxx"
output<-html_nodes(url, ".style input")

This will return a list of input tags:

[[1]]
<input id="a" value="123">
[[2]]
<input id="b">

Next I tried using html_node to reference the first input tag by id:

html_node(output, "#a")

Here it returned a list of nulls instead of the input tag I want.

[[1]]
NULL
[[2]]
NULL

My question is, how can I reference the input tag using its id?


回答1:


You can use xpath:

require(rvest)
text <- '<div class="style">
   <input id="a" value="123">
   <input id="b">
</div>'

h <- read_html(text)

h %>% 
  html_nodes(xpath = '//*[@id="a"]') %>%
  xml_attr("value")

The easiest way to get css- and xpath-selector is to use http://selectorgadget.com/. For a specific attribute like yours use chrome's developer toolbar to get the xpath as follows:




回答2:


This will work just fine with straight CSS selectors:

library(rvest)

doc <- '<div class="style">
   <input id="a" value="123">
   <input id="b">
</div>'

pg <- html(doc)
html_attr(html_nodes(pg, "div > input:first-of-type"), "value")

## [1] "123"


来源:https://stackoverflow.com/questions/32127921/rvest-how-to-select-a-specific-css-node-by-id

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!