Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想使用 R 包“Rvest”抓取holidayiq.com酒店评论数据,例如酒店评论链接。'RSelenium' 用于单击“Next >”链接以访问更多页面。
每当我使用代码 nxtButton = mybrowser$findElement(using = 'css selector', "#next") nxtButton$clickElement() 访问下一页时,我都会收到以下错误:
nxtButton = mybrowser$findElement(using = 'css selector', "#next") nxtButton$clickElement()
错误快照
请告诉我如何处理这个错误。提前感谢您的帮助。
下面的代码应该可以工作。
在页面中找不到您的 css 元素。
nxtButton = mybrowser$findElement(using = 'css selector', "#submit_form") nxtButton$clickElement()
我猜您想在上面提供的链接中单击右侧表单中的 NEXT 按钮。