Selenio - Interacción de casilla de verificación
En esta sección, entenderemos cómo interactuar con Check Box. Podemos seleccionar una casilla de verificación usando el método de 'clic' y desmarcar usando el mismo método de 'clic'.
Entendamos cómo interactuar con una casilla de verificación utilizando https://www.calculator.net/mortgage-calculator.html. También podemos comprobar si una casilla de verificación está seleccionada / habilitada / visible.
Ejemplo
import java.util.concurrent.TimeUnit;
import org.openqa.selenium.*;
import org.openqa.selenium.firefox.FirefoxDriver;
public class webdriverdemo {
public static void main(String[] args) throws InterruptedException {
WebDriver driver = new FirefoxDriver();
//Puts a Implicit wait, Will wait for 10 seconds before throwing exception
driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS);
//Launch website
driver.navigate().to("http://www.calculator.net/mortgage-calculator.html");
driver.manage().window().maximize();
//Click on check Box
driver.findElement(By.id("caddoptional")).click();
System.out.println("The Output of the IsSelected " +
driver.findElement(By.id("caddoptional")).isSelected());
System.out.println("The Output of the IsEnabled " +
driver.findElement(By.id("caddoptional")).isEnabled());
System.out.println("The Output of the IsDisplayed " +
driver.findElement(By.id("caddoptional")).isDisplayed());
driver.close();
}
}
Salida
Tras la ejecución, la casilla de verificación se desmarca después de hacer clic en el comando (como se verificó de manera predeterminada) y la salida de los comandos se muestra en la consola.