我正在尝试访问Google趋势中的数据。我使用Rselenium
访问我的Gmail帐户;希望凭据将增加我的每日限额配额。不幸的是,经过几次刮擦后,我收到错误page.onError - msg: ReferenceError: Can't find variable
,并对如何避免这种情况感到好奇。我假设它与我达到我的每日限制。我也使用了rvest
,也没有运气。我读了几篇博文,说明我必须启用我的cookie,但我不知道如何使用Phantomjs。
url <- 'https://www.google.com/trends/fetchComponent?hl=en-US&q=next,geo=US&cid=TOP_QUERIES_0_0'
remDr$navigate(url)
abc <- webElemen02$getPageSource()
top_searches <- read_html(unlist(abc))%>%
html_nodes(xpath='//*[@class="trends-bar-chart-name"]') %>%
html_text(trim=TRUE)