如何使用JavaScript单击Selenium WebDriver中的元素?
2022-08-31 22:21:38
我有以下HTML:
<button name="btnG" class="gbqfb" aria-label="Google Search" id="gbqfb"><span class="gbqfi"></span></button>
我点击“Google搜索”按钮的以下代码在WebDriver中使用Java运行良好。
driver.findElement(By.id("gbqfb")).click();
我想将JavaScript与WebDriver一起使用以单击该按钮。我该怎么做?