我一直在简单的网站上使用rvest一段时间。
但是现在我在尝试从以下网站提取信息时遇到了困难:
我尝试使用CSS和XPath,使用Rvest包,但没有成功。
library(rvest);library(magrittr)
#Trying to extract the body using selectorGadget's css
site="https://www.reclameaqui.com.br/net-servicos-tv-banda-larga-e-telefone/conta-fora-do-acordado_-EeZZRgj5BoPsHK7/"
read_html(site)%>%html_nodes(css=".complain-body .ng-binding")%>%html_text()
#[1] NA
我需要提取标题和主体文字。
有什么建议吗?
提前谢谢!