Answers for "How do I click a button inside DIV tag via webdriver?"

0

How do I click a button inside DIV tag via webdriver?

WebElement myElement = (new WebDriverWait(driver, 15))
              .until(ExpectedConditions.visibilityOfElementLocated(By.xpath("//div[@class='card-footer text-right']/input[@id='login']")));
    myElement.click();
Posted by: Guest on June-26-2021

Code answers related to "How do I click a button inside DIV tag via webdriver?"

Browse Popular Code Answers by Language