我正在使用 selenium-webdriver 并且我正在寻找一些非常简单的东西,但我没有在文档中找到它。
这是我的代码的一部分:
browser = Selenium::WebDriver.for :firefox, :profile => profile
browser.navigate.to 'an_url'
# I find ancestor element
browser.find_element(:id, "displaylinks").find_element(:id, "link0").find_element(:class, "link-center")
# but I want to click the first link child of this last element
有任何想法吗 ?