RemoteWebDriver 和 WebElement 的通用接口
common interface for RemoteWebDriver and WebElement
我有两个方法:
1.接收RemoteWebDriver
对象并对其执行findElement()
。
2.接收WebElement
对象并对其执行findElement()
。
有没有办法将这两个合并为一个接收 RemoteWebDriver
或 WebElement
对象的方法?
常用接口为SearchContext
:
https://seleniumhq.github.io/selenium/docs/api/java/org/openqa/selenium/SearchContext.html
(您的 IDE 能够为您提供此类信息,查找类型层次结构)
我有两个方法:
1.接收RemoteWebDriver
对象并对其执行findElement()
。
2.接收WebElement
对象并对其执行findElement()
。
有没有办法将这两个合并为一个接收 RemoteWebDriver
或 WebElement
对象的方法?
常用接口为SearchContext
:
https://seleniumhq.github.io/selenium/docs/api/java/org/openqa/selenium/SearchContext.html
(您的 IDE 能够为您提供此类信息,查找类型层次结构)