设置正确的 xpath
Setting the correct xpath
我正在尝试为使用 RSelenium 设置正确的 xpath,但我在这方面不是很有经验,因此非常感谢任何帮助。
由于不允许 post 图片,因此我尝试在 html 的屏幕截图中添加 link:
The html
我需要 R 来抓取日期 (28-10-2020 - 13-11-2020),但到目前为止我在使用 html.nodes.[=12 时无法设置正确的 xpath =]
我正在尝试从这样的网站抓取:https://www.boligsiden.dk/adresse/topperne-9-3-33-2620-albertslund-01650532___9__3__33
我通常在 python 而不是 R
上这样做
As you can see in this image when you right-click on the element concerned. You get a drop-down menu with an x-path to the element.
除此之外,站点方向和 x 路径可能会改变,完整的 x 路径可能是短的 运行 中的一个不错的选择,所以我更喜欢 driver.find_element_by_xpath('//button[contains(text(),"Login")]')\ .click()
你的情况是 find_element_by_xpath('//*[contains(@class, 'u-pb-4 u-block')]')
我希望这对您有所帮助,并且它在不同语言中基本相同
我正在尝试为使用 RSelenium 设置正确的 xpath,但我在这方面不是很有经验,因此非常感谢任何帮助。 由于不允许 post 图片,因此我尝试在 html 的屏幕截图中添加 link: The html
我需要 R 来抓取日期 (28-10-2020 - 13-11-2020),但到目前为止我在使用 html.nodes.[=12 时无法设置正确的 xpath =]
我正在尝试从这样的网站抓取:https://www.boligsiden.dk/adresse/topperne-9-3-33-2620-albertslund-01650532___9__3__33
我通常在 python 而不是 R
上这样做As you can see in this image when you right-click on the element concerned. You get a drop-down menu with an x-path to the element.
除此之外,站点方向和 x 路径可能会改变,完整的 x 路径可能是短的 运行 中的一个不错的选择,所以我更喜欢 driver.find_element_by_xpath('//button[contains(text(),"Login")]')\ .click()
你的情况是 find_element_by_xpath('//*[contains(@class, 'u-pb-4 u-block')]')
我希望这对您有所帮助,并且它在不同语言中基本相同