我想帮助从硬件区域抓取信息。
这是链接:http://www.hardwarezone.com.sg/search/forum/camera
我想在论坛上获取有关相机的所有信息。
library(RSelenium)
library(magrittr)
base_url = "http://www.hardwarezone.com.sg/search/forum/camera"
checkForServer()
startServer()
remDrv <- remoteDriver()
remDrv$open()
我尝试在第一部分使用上面的代码,最后一行出错了。 (Mac用户) 我得到的错误是未定义的RCurl调用,但我引用了许多可能的解决方案,但我仍然无法解决它。
library (rvest)
url <- "http://www.hardwarezone.com.sg/search/forum/camera"
result <- url %>%
html() %>%
html_nodes (xpath = '//*[id="cse"]/table[1]') %>%
html_table()
result
我尝试使用其他方法(上面的代码),但它仍然无法正常工作。
任何人都可以指导我完成这个吗?
谢谢。