Selênio - interação de caixa de texto

Nesta seção, entenderemos como interagir com caixas de texto. Podemos colocar valores em uma caixa de texto usando o método 'sendkeys'. Da mesma forma, também podemos recuperar texto de uma caixa de texto usando o comando getattribute ("value"). Dê uma olhada no exemplo a seguir.

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 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/percent-calculator.html");
      
      // Maximize the browser
      driver.manage().window().maximize();
      
      // Enter value 10 in the first number of the percent Calculator
      driver.findElement(By.id("cpar1")).sendKeys("10");
      
      Thread.sleep(5000);
      
      // Get the text box from the application
      String result = driver.findElement(By.id("cpar1")).getAttribute("value");
      
      // Print a Log In message to the screen
      System.out.println(" The Result is " + result);
      
      // Close the Browser.
      driver.close();
   }
}

Resultado

A saída do script acima é exibida conforme mostrado abaixo.