我们可以使用以下方法单击Web元素。
myWebElement.click();
要么
JavascriptExecutor js = (JavascriptExecutor) driver; js.executeScript("arguments[0].click();", myWebElement);
Actions(driver).click(myWebElement).build().perform();
这些方法有什么区别?
myWebElement.click(); Actions(驱动程序).click(myWebElement).build()。perform();
myWebElement.click();
Actions(驱动程序).click(myWebElement).build()。perform();
click方法和action类都属于webdriver。Action类用于模拟复杂的用户手势(包括诸如拖放或使用Control键等单击多个元素之类的动作)。click方法用于单击相应的webElement(按钮,链接等)。SeleniumWebdriver使用浏览器的本机支持,使用id / xpath等定位符将DOM元素映射到WebElement对象。
JavaScriptExecutor是一个接口,提供通过硒驱动程序执行Javascript的机制。它提供了“ executescript”和“ executeAsyncScript”方法,以便在当前选定的框架或窗口的上下文中运行外部JavaScript。如果是executescript,它将返回一个DOM元素,然后将其转换为WebElement。
与使用javascript调用的点击相比,WebDriver在浏览器上模拟的点击类似于实际用户的点击
示例场景 :
<html> <body> <button type = "button" id ="test" style = "display:none"> clickme </button> </body> </html>
如果使用webdriver中的单击功能单击“单击我”按钮,则会得到一个org.openqa.selenium.ElementNotVisibleException(元素不可见异常),它是正确的,因为该元素存在于DOM中,但由于display:none设置了CSS样式而不会显示给用户
org.openqa.selenium.ElementNotVisibleException
display:none
((JavascriptExecutor)driver).executeScript("$('#test').click();");//or ((JavascriptExecutor)driver).executeScript("document.getElementById('test').click();");
如果您使用上述javascript / jquery单击该元素,则无论按钮是否可见,它都会单击该按钮,这是错误的,因为最终用户将无法看到/单击该按钮,但是您的脚本将通过。因此,道德是尝试尽可能使用webdriver函数,而不是使用javascript。
希望这对您有所帮助。如有任何疑问,请尽快回来