Selenium简单例子

我们平时工作中需要向网站提交数据,之前是用httpclient来模拟提交数据,这样似乎很直接,很方便,但网站频繁的改版,让我们疲于奔命。于是开始想别的方向,模拟人的动作向网站提交数据,于是很顺理成章地开始使用Selenium,之前没有接触过,所以先来用最简单的例子试试看。


第一个例子是尝试调用baidu的搜索功能。

import org.openqa.selenium.By;  
import org.openqa.selenium.WebDriver;  
import org.openqa.selenium.WebElement;
import org.openqa.selenium.firefox.FirefoxDriver;  
import org.openqa.selenium.support.ui.ExpectedCondition;  
import org.openqa.selenium.support.ui.WebDriverWait;  


public class SeleniumTest {
	
	WebDriver driver;  

	/**
	 * @param args
	 */
	public static void main(String[] args) {
		SeleniumTest test =  new SeleniumTest();
		test.testBaidu();
	}
	
	public void testBaidu() {
		driver = new FirefoxDriver();  
		driver.get("http://baidu.com");  
		driver.findElement(By.id("kw")).sendKeys("test");
		driver.findElement(By.id("su")).click();
		driver.quit();
	}
}

打开百度首页,输入test进行搜索。好像还满好玩的~

你可能感兴趣的:(Selenium简单例子)