在Java中
WebElement button = driver.findElement(By.id(""));
//For clicking the button...
button.click();
还有其他方法可以点击webElement,如收音机,复选框,按钮等。?
答案 0 :(得分:0)
如果您想点击某些内容,为什么还要使用其他内容?我猜click()是元素可点击的最佳方法。
仍然可以使用enter来执行相同的操作。
WebElement button = driver.findElement(By.id(""));
button.sendKeys(Keys.Enter);