WebDriver 小毛笔记(三) 初建项目

准备工作做完了,开始写个最简单的自动化测试脚本。

 一、打开eclipse创建一个Java项目
 

二、创建一个lib目录,将所需要的jar包放入其中,并且载入它们
 

三、创建测试脚本文件

在java中全部是类的概念,当然可以再建立一个包,方便将来管理。
 

四、编写脚本

 

   
   
   
   
  1. package test; 
  2.  
  3. import org.openqa.selenium.WebDriver; 
  4. import org.openqa.selenium.firefox.FirefoxDriver; 
  5. import org.testng.annotations.AfterSuite; 
  6. import org.testng.annotations.BeforeSuite; 
  7. import org.testng.annotations.Test; 
  8.  
  9. public class test1 { 
  10.  
  11.    private WebDriver driver; 
  12.    private String baseUrl; 
  13.  
  14.    @BeforeSuite 
  15.    public void setUp() throws Exception { 
  16.          driver = new FirefoxDriver(); 
  17.          baseUrl = "http://www.baidu.com/"
  18.    } 
  19.  
  20.    @Test 
  21.    public void BaiduIndex() throws Exception { 
  22.          driver.get(baseUrl + ""); 
  23.    } 
  24.  
  25.    @AfterSuite 
  26.    public void tearDown() throws Exception { 
  27.          driver.quit(); 
  28.    } 
  29. }

五、运行脚本

六、查看结果


利用WebDriver实现最简单的自动化脚本已经完成。

你可能感兴趣的:(自动化测试,webdriver,Selenium2.0,自动化框架)