Selênio - Interação do botão de rádio

Nesta seção, entenderemos como interagir com os botões de rádio. Podemos selecionar uma opção de botão de rádio usando o método 'clique' e desmarcar usando o mesmo método 'clique'.

Vamos entender como interagir com botões de rádio usando https://www.calculator.net/mortgage-payoff-calculator.html. Também podemos verificar se um botão de rádio está selecionado ou habilitado.

Exemplo

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 an 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-payoff-calculator.html");
      driver.manage().window().maximize();
      
      // Click on Radio Button
      driver.findElement(By.id("cpayoff1")).click();
      System.out.println("The Output of the IsSelected " +
         driver.findElement(By.id("cpayoff1")).isSelected());
      System.out.println("The Output of the IsEnabled " +
         driver.findElement(By.id("cpayoff1")).isEnabled());
      System.out.println("The Output of the IsDisplayed " +
         driver.findElement(By.id("cpayoff1")).isDisplayed());
      
      //Close the Browser.
      driver.close();
   }
}

Resultado

Na execução, o botão de rádio é selecionado e a saída dos comandos é exibida no console.