位置:首页 > 软件测试 > Selenium在线教程 > 文本框的相互作用

文本框的相互作用

文本框的相互作用

在本节中,我们将了解如何使用文本框交互。我们可以把值转换成文本框中使用“SendKeys”方法,也使用getattribute("value")指令得到的文本文字。现在让我们来看看一个例子。

selenium_ide_177
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.htmll");
	
	//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();    
  }
}

输出

显示上面的脚本的输出如下所示。

selenium_ide_183
文本框的相互作用