除了click()和submit()方法之外还有其他方法可以选择/单击selenium Webdriver中的web元素吗?

时间:2016-05-23 11:34:40

标签: java selenium selenium-webdriver

在Java中

WebElement button = driver.findElement(By.id(""));
//For clicking the button...  
button.click();

还有其他方法可以点击webElement,如收音机,复选框,按钮等。?

1 个答案:

答案 0 :(得分:0)

如果您想点击某些内容,为什么还要使用其他内容?我猜click()是元素可点击的最佳方法。

仍然可以使用enter来执行相同的操作。

WebElement button = driver.findElement(By.id(""));
button.sendKeys(Keys.Enter);