我正在尝试通过使用 RSelenium 的按钮捕获网页上可用的 csv。相关的html是:
<a ng-click='download()'><i class='csv-download'></i> Download</a>
我可以i
通过它的类选择元素:
remDr$findElement(using = 'css selector', ".csv-download")
我认为要自动按下按钮,我需要选择父a
元素,但不知道如何做到这一点。 xpath
似乎是最好的方法:
remDr$findElement(using = 'xpath', "//i[@class='csv-download']/parent::*")
Error: Summary: NoSuchElement
Detail: An element could not be located on the page using the given search parameters.
class: org.openqa.selenium.NoSuchElementException
xpath公式一定有问题。感谢您的帮助。