使用rvest和xpath或选择器来抓取Web数据

时间:2019-02-15 21:59:17

标签: html r rvest

苦苦挣扎,并确保以前已经解决了这个问题(我确实尝试过),但是我试图从此站点获取商店位置:

https://www.zipscarwash.com/locations/

(在Chrome中)导航到了我认为是包含所有地址的HTML区域,并使用Chrome获取了以下选择器(尝试了以下所有内容):

#wpsl-stores
#wpsl-stores > ul
#wpsl-stores > ul > li:nth-child(1) > div.wpsl-store-location

我只想返回所有140个地点的商店地点的地址;我的代码如下:

library(pacman)
p_load(rvest, tidyverse)

read_html("https://www.zipscarwash.com/locations/") %>% 
html_nodes("#wpsl-stores > ul > li:nth-child(1)") %>% html_text()

我不知道自己在做什么错,只是返回了character(0)

0 个答案:

没有答案