📌  相关文章
📜  如何通过 webdriver 单击 DIV 标签内的按钮? - 无论代码示例

📅  最后修改于: 2022-03-11 15:00:10.898000             🧑  作者: Mango

代码示例1
WebElement myElement = (new WebDriverWait(driver, 15))
              .until(ExpectedConditions.visibilityOfElementLocated(By.xpath("//div[@class='card-footer text-right']/input[@id='login']")));
    myElement.click();