1 Java环境的搭建

1.1访问oracle的官网下载最新版本的jdk

http://www.oracle.com/technetwork/java/javase/downloads/index-jsp-138363.html

进去后选择电脑配置对应版本的JDK版本。

下载成功以后直接下一步,安装默认的路径。这里注意:安装的过程中会提示一个JRE的安装路径,需要注意一下,一个是运行环境(JRE),一个是编译的环境,JDK中默认会有JRE。

1.2配置环境变量 

打开电脑中的系统属性中的高级系统配置中的环境变量。系统变量中新建一个变量名称为Java_Home,存放的路径为jdk的安装目录的路径:C:\Program Files\Java\jdk-version

新建变量Path:%JAVA_HOME%\bin;%JAVA_HOME%\jre\bin;

新建变量Classpath:.;%JAVA_HOME%\lib\dt.jar;%JAVA_HOME%\lib\tools.jar;

验证是否安装成功,windows cmd:输入java -versions,回车,出现jdk版本信息,则证明配置成功。

2安装Java编辑工具eclipse

2.1访问eclipse官网下载Java编辑工具eclipse

下载地址:http://www.eclipse.org/downloads/

下载后解压到指定目录,点击启动程序文件即可打开eclipse如下图

2.2 eclipse中安装testNG插件

在线安装:

打开eclipse-->Help-->Install New Software-->Add-->Name和Location中输入MyTestNG和http://beust.com/eclipse-->出现TestNG勾选-->Next-->安装成功后重启eclipse

离线安装:

1.下载附件(eclipse-testng离线包.zip),并解压;
      2.将解压后的文件..\eclipse-testng离线包\features\目录下的文件夹org.testng.eclipse_6.8.6.20130607_0745放到eclipse--》features目录下;
      3.将解压后的文件..\eclipse-testng离线包\org.testng.eclipse_6.8.6.20130607_0745文件夹放到eclipse--》plugins目录下;
      4.重启eclipse.

验证成功安装testNG的方法:file-->new-->other-->TestNg

Eclipse执行Selenium的Java实例

3.1新建java工程

File-->new-->other-->Java Project-->输入工程名,选择Java运行环境的版本,点击Finish

3.2导入Selenium相关的包

在tests上右键,Properties-->Java Build Path-->Libraries-->Add External Jars-->选择下载好的Selenium相关包全部导入-->点击OK

以上方法导入若新建一个工程就要重新导入所有的jar包,现我们用另一种方法解决这种重复导入jar包的麻烦。同样在tests上右键,Properties-->Java Build Path-->Libraries-->Add Library -->User Library-->Next-->User Librarys-->New-->输入Library名(selenium Library 方便记)-->OK-->Add External Jars-->选择下载好的Selenium相关包全部导入-->点击OK-->选择刚创建的User Library-->Finish-->OK

3.3导入testNG库

同样在tests上右键,Properties-->Java Build Path-->Libraries-->Add Library -->TestNG-->Next-->OK

3.4 浏览器驱动

下载ChromeDriver.exe,并拷贝到Chrome安装目录中

同样方法下载IEDriverServer.exe,并拷贝到IE浏览器的安装目录中,

由于selenium支持火狐浏览器,所以我们可以不用下载其驱动,但为了以防万一,我们还是要安装一下滴!(下载geckodriver.exe,拷贝到火狐的安装目录中)。

有时候我们要把代码压缩,发送给其他人用的时候,那些驱动就不能使用了,因为没有一起打包压缩,那么我们就可以将这些驱动全部加到项目的文件夹中。

首先,我们在tests项目下的src目录下,新建一个driver目录,将三个浏览器驱动拷贝到driver目录下,这样我们就可以将驱动一起打包压缩交给别人了。

3.5 编写代码

首先我们在SRC目录下新建几个Package

现在我们来说说这些package的作用吧。

Pageobject存放一些页面对象,一个页面一个类,类中存放和这个页面相关的所有方法(该页面的所有相关操作)。

Test存放要测试的类,一个类测试一个页面,类中存放多个测试案例,调用方法,使用数据进行测试的类。

Util 存放公共类代码,如UseBrowser.java,存放chrome,Firefox,IE等浏览器的相关代码。BaseTest.java,存放执行TestSuit前要执行的方法和执行TestSuit后要执行的方法的代码。

首先我们在Util包中编写要使用的浏览器的启动代码,一般有三种浏览器是比较常用的。分别是谷歌浏览器、火狐浏览器以及IE浏览器。下面是启动浏览器的相关代码:

UseBrowser类

package com.zzx.util;

import java.util.concurrent.TimeUnit;

import org.openqa.selenium.WebDriver;

import org.openqa.selenium.chrome.ChromeDriver;

import org.openqa.selenium.firefox.FirefoxDriver;

import org.openqa.selenium.ie.InternetExplorerDriver;

public class UseBrowser {

public static WebDriver driver;

//启动谷歌浏览器

public WebDriver startChrome(String url) throws Exception {

try {

System.setProperty("webdriver.chrome.driver", "D:\\workspace\\tests\\src\\driver\\chromedriver.exe");

driver = new ChromeDriver();

driver.get(url);

System.out.println("成功打开谷歌浏览器!");

// driver.manage().window().maximize();

driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS);

catch (Exception e) {

System.out.println("打开谷歌浏览器时出错了"+e);

}

return driver;

}

//启动火狐浏览器

public WebDriver startFirefox(String url) throws Exception {

try {

// 默认支持火狐浏览器,能够正常打开,若不能打开火狐,则把下面的火狐的驱动放开

// System.setProperty("webdriver.firefox.marionette","D:\\workspace\\tests\\src\\driver\\geckodriver.exe");

driver = new FirefoxDriver();

driver.get(url);

System.out.println("成功打开火狐浏览器!");

driver.manage().window().maximize();

driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS);

Thread.sleep(2000);

catch (Exception e) {

System.out.println("打开火狐浏览器时出错了"+e);

}

return driver;

}

//启动IE浏览器

public WebDriver startIE(String url) throws Exception {

try {

System.setProperty("webdriver.ie.driver", "D:\\workspace\\tests\\src\\driver\\IEDriverServer.exe");

driver = new InternetExplorerDriver();

driver.get(url);

System.out.println("成功打开IE浏览器!");

driver.manage().window().maximize();

driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS);

catch (Exception e) {

System.out.println("打开IE浏览器时出错了"+e);

}

return driver;

}

//关闭浏览器

public void tearDownBrowser() throws Exception {

try {

Thread.sleep(2000);

driver.close();

System.out.println("成功关闭浏览器!");

catch (Exception e) {

System.out.println("关闭浏览器时出错了"+e);

}

}

}

在编写完启动浏览器的相关代码后,我们再编写基础类,当有测试类要执行时就要继承这个基础类,继承它的两个方法。这个类的主要功能就是在执行TestSuite之前要先打开相关的浏览器,然后进行相关测试,执行完TestSuite的测试用例之后,我们要关闭浏览器。具体代码如下:

BaseTest类

package com.zzx.util;

import org.openqa.selenium.WebDriver;

import org.testng.annotations.AfterSuite;

import org.testng.annotations.BeforeSuite;

public class BaseTest {

public String LoginURL = "http://*************";

private static String URL = "http://****************/";

UseBrowser useBrowser = new UseBrowser();

public static WebDriver driver;

@BeforeSuite

public void start() throws Exception {

try {

driver = useBrowser.startChrome(URL);

// driver = useBrowser.startIE(URL);

// driver = useBrowser.startFirefox(URL);

catch (Exception e) {

System.out.println(e);

}

}

@AfterSuite

public void end() throws Exception {

useBrowser.tearDownBrowser();

}

}

前期的准备工作算是已经完成了,现在我们要开始做最主要的事情,在pageobject包中新建一个LoginPage类,对页面元素的封装,这里我并没有二次封装对元素的操作。直接调用原生API方法进行元素的操作。要对元素的操作进行二次封装其实很简单,只要自己定义方法,重新封装,然后调用自己定义的方法就可以对元素进行相关的操作了。该页面对象中存放着该页面上要进行测试功能点的方法以及和测试功能点相关的其他辅助方法。具体代码如下:

登录页面相关操作及方法

package com.zzx.pageObject;

import org.openqa.selenium.By;

import org.openqa.selenium.NoAlertPresentException;

import org.openqa.selenium.WebDriver;

import org.testng.Reporter;

public class LoginPage {

private String name = "name";

private String pwd = "pwd";

private String forLogin = "inputbutton";

public void login(WebDriver driver, String username, String password) throws Exception {

driver.findElement(By.name(name)).sendKeys(username);

driver.findElement(By.name(pwd)).sendKeys(password);

// 点击登录

driver.findElement(By.id(forLogin)).click();

Thread.sleep(2000);

// System.out.println(driver.getCurrentUrl());

}

public boolean isLoginSuccess(WebDriver driver) throws Exception{

boolean flag = false;

try {

if(driver.findElement(By.id("asset")).isDisplayed()){

flag=true;

}

} catch (Exception e) {

// e.printStackTrace();

// System.out.println(e);

}

return flag;

}

public boolean loginStatus(WebDriver driver) throws Exception {

if (isAlertPresent(driver)) {

Reporter.log(driver.switchTo().alert().getText());

System.out.println(driver.switchTo().alert().getText());

driver.switchTo().alert().accept();

driver.navigate().refresh();

return false;

}

else if (!(isLoginSuccess(driver))) {

Reporter.log("用户名错误!");

System.out.println("用户名错误!");

driver.navigate().refresh();

Thread.sleep(2000);

return false;

}

else {

Reporter.log("登录成功!");

System.out.println("登录成功!");

return true;

}

}

public boolean isAlertPresent(WebDriver driver) throws Exception {

try {

driver.switchTo().alert();

return true;

} catch (NoAlertPresentException e) {

// e.printStackTrace();

return false;

}

}

public  boolean isLoginPage(WebDriver driver) throws Exception {

boolean flag = false;

try {

if (driver.findElement(By.id(forLogin)).getAttribute("value").equals("登录")) {

flag = true;

return flag;

}

} catch (Exception e) {

//     System.out.println(e);

return flag;

}

return flag;

}

}

写好了测试功能点的代码后,我们就要在test包中编写相关的测试用例的执行方法了,这里我只用了登录的相关测试用例作为例子。

登录页面相关测试用例

package com.zzx.test;

import static org.testng.Assert.assertEquals;

import org.testng.annotations.Test;

import com.zzx.pageObject.LoginPage;

import com.zzx.util.BaseTest;

public class LoginTest extends BaseTest{

LoginPage loginPage = new LoginPage();

String LoginURL = "http://oneadmin.peersafe.cn/logout";

/**

* 方法名称:loginTest1

* 方法描述: This method is testing the empty username and the right password

*         The end is Loginfailed ,I will print some error information  on the console and

*         the page still stay on the login page

* 创建人:zzx

* 创建时间:2017年9月12日 下午5:33:27

* 修改人:zzx

* 修改时间:2017年9月12日 下午5:33:27

* 修改备注:

* @version  1.0

* @throws Exception maybe some exception will happen

*/

//空的用户名和正确的密码,登录失败,控制台输出“用户名错误!”

@Test(priority=1)

public void loginTest1() throws Exception{

if(!loginPage.isLoginPage(driver)){

driver.get(LoginURL);

}

try {

loginPage.login(driver, "","$z58dSHE");

} catch (Exception e) {

System.out.println(e);

}

finally {

assertEquals(false, loginPage.loginStatus(driver));

}

}

/**

* 方法名称:loginTest2

* 方法描述: This method is testing the empty username and the error password

*         The end is Loginfailed ,I will print some error information  on the console and

*         the page still stay on the login page

* 创建人:zzx

* 创建时间:2017年9月12日 下午5:33:27

* 修改人:zzx

* 修改时间:2017年9月12日 下午5:33:27

* 修改备注:

* @version  1.0

* @throws Exception maybe some exception will happen

*/

//空的用户名和错误的密码,登录失败,控制台输出“用户名错误!”

@Test(priority=2)

public void loginTest2() throws Exception{

if(!loginPage.isLoginPage(driver)){

driver.get(LoginURL);

}

try {

loginPage.login(driver, "","$z58dSH");

} catch (Exception e) {

System.out.println(e);

}

finally {

assertEquals(false, loginPage.loginStatus(driver));

}

}

/**

* 方法名称:loginTest3

* 方法描述: This method is testing the right username and the empty password

*         The end is Loginfailed ,I will print some error information  on the console and

*         the page still stay on the login page

* 创建人:zzx

* 创建时间:2017年9月12日 下午5:33:27

* 修改人:zzx

* 修改时间:2017年9月12日 下午5:33:27

* 修改备注:

* @version  1.0

* @throws Exception maybe some exception will happen

*/

//正确用户名和空的密码,登录失败,控制台输出“密码不正确”

@Test(priority=3)

public void loginTest3() throws Exception{

if(!loginPage.isLoginPage(driver)){

driver.get(LoginURL);

}

try {

loginPage.login(driver, "admin","");

} catch (Exception e) {

System.out.println(e);

}

finally {

assertEquals(false, loginPage.loginStatus(driver));

}

}

/**

* 方法名称:loginTest4

* 方法描述: This method is testing the error username and the empty password

*         The end is Loginfailed ,I will print some error information  on the console and

*         the page still stay on the login page

* 创建人:zzx

* 创建时间:2017年9月12日 下午5:33:27

* 修改人:zzx

* 修改时间:2017年9月12日 下午5:33:27

* 修改备注:

* @version  1.0

* @throws Exception maybe some exception will happen

*/

//错误用户名和空的密码,登录失败,控制台输出“用户名错误!”

@Test(priority=4)

public void loginTest4() throws Exception{

if(!loginPage.isLoginPage(driver)){

driver.get(LoginURL);

}

try {

loginPage.login(driver, "admim","");

} catch (Exception e) {

System.out.println(e);

}

finally {

assertEquals(false, loginPage.loginStatus(driver));

}

}

/**

* 方法名称:loginTest5

* 方法描述: This method is testing the empty username and the empty password

*         The end is Loginfailed ,I will print some error information  on the console and

*         the page still stay on the login page

* 创建人:zzx

* 创建时间:2017年9月12日 下午5:33:27

* 修改人:zzx

* 修改时间:2017年9月12日 下午5:33:27

* 修改备注:

* @version  1.0

* @throws Exception maybe some exception will happen

*/

//空的用户名和空的密码,登录失败,控制台输出“用户名错误!”

@Test(priority=5)

public void loginTest5() throws Exception{

if(!loginPage.isLoginPage(driver)){

driver.get(LoginURL);

}

try {

loginPage.login(driver, "","");

} catch (Exception e) {

System.out.println(e);

}

finally {

assertEquals(false, loginPage.loginStatus(driver));

}

}

/**

* 方法名称:loginTest6

* 方法描述: This method is testing the error username and the error password

*         The end is Loginfailed ,I will print some error information  on the console and

*         the page still stay on the login page

* 创建人:zzx

* 创建时间:2017年9月12日 下午5:33:27

* 修改人:zzx

* 修改时间:2017年9月12日 下午5:33:27

* 修改备注:

* @version  1.0

* @throws Exception maybe some exception will happen

*/

//错误用户名和错误的密码,登录失败,控制台输出“用户名错误!”

@Test(priority=6)

public void loginTest6() throws Exception{

if(!loginPage.isLoginPage(driver)){

driver.get(LoginURL);

}

try {

loginPage.login(driver, "admim","$z58dSH");

} catch (Exception e) {

System.out.println(e);

}

finally {

assertEquals(false, loginPage.loginStatus(driver));

}

}

/**

* 方法名称:loginTest7

* 方法描述: This method is testing the right username and the error password

*         The end is Loginfailed ,I will print some error information  on the console and

*         the page still stay on the login page

* 创建人:zzx

* 创建时间:2017年9月12日 下午5:33:27

* 修改人:zzx

* 修改时间:2017年9月12日 下午5:33:27

* 修改备注:

* @version  1.0

* @throws Exception maybe some exception will happen

*/

//正确用户名和错误的密码,登录失败,控制台输出“密码不正确”

@Test(priority=7)

public void loginTest7() throws Exception{

if(!loginPage.isLoginPage(driver)){

driver.get(LoginURL);

}

try {

loginPage.login(driver, "admin","$z58dSH");

} catch (Exception e) {

System.out.println(e);

}

finally {

assertEquals(false, loginPage.loginStatus(driver));

}

}

/**

* 方法名称:loginTest8

* 方法描述: This method is testing the error username and the right password

*         The end is Loginfailed ,I will print some error information  on the console and

*         the page still stay on the login page

* 创建人:zzx

* 创建时间:2017年9月12日 下午5:33:27

* 修改人:zzx

* 修改时间:2017年9月12日 下午5:33:27

* 修改备注:

* @version  1.0

* @throws Exception maybe some exception will happen

*/

//错误用户名和正确密码,登录失败,控制台输出“用户名错误!”

@Test(priority=8)

public void loginTest8() throws Exception{

if(!loginPage.isLoginPage(driver)){

driver.get(LoginURL);

}

try {

loginPage.login(driver, "admim","$z58dSHE");

} catch (Exception e) {

System.out.println(e);

}

finally {

assertEquals(false, loginPage.loginStatus(driver));

}

}

/**

* 方法名称:loginTest9

* 方法描述: This method is testing the right username and the right password

*         The end is successed ,I will print some successed information  on the console and

*         the page will into the home page

* 创建人:zzx

* 创建时间:2017年9月12日 下午5:33:27

* 修改人:zzx

* 修改时间:2017年9月12日 下午5:33:27

* 修改备注:

* @version  1.0

* @throws Exception maybe some exception will happen

*/

//正确用户名和正确密码,登录成功,控制台输出“登录成功!”

@Test(priority=9)

public void loginTest9() throws Exception{

if(!loginPage.isLoginPage(driver)){

driver.get(LoginURL);

}

try {

loginPage.login(driver, "admin","$z58dSHE");

} catch (Exception e) {

System.out.println(e);

}

finally {

assertEquals(true, loginPage.loginStatus(driver));

}

}

}

3.6 代码执行

在所有的代码都已经编写完成后,我们就要开始去执行测试用例了,有两种执行方法。

第一种方法:在test包下的某个测试类页面下或在包下的某个类,点击右键出现Run As-->TestNG Test执行该测试类中的所有方法。

第二种方法:执行某个测试类则在test包下的某个测试类右键---TestNG -----> Convert to TestNG--->Finish,出现testng.xml,右键testng.xml--->Run As--->TestNG Suite执行测试方法,若要执行整个项目的所有测试方法,则项目右键--->TestNG--->Convert to TestNG--->Finish,出现testng.xml,右键testng.xml--->Run As--->TestNG Suite执行项目的所有测试方法

eclipse+java+selenium+testNG搭建自动化测试框架相关推荐

  1. java+Selenium+TestNg搭建自动化测试架构(1)实现代码和数据的分离

    1.主要介绍介绍Java+Selenium+POM的自动化测试框架的搭建,第一个首先实现代码和账号URL等信息的分离.第二点支持跨浏览器,通过读取配置文件的方式实现. 1)将账号URL等信息添加在pr ...

  2. jxl读取html格式excel,基于Java+Selenium的WebUI自动化测试框架(十)-----读取Excel文件(JXL)...

    packagewebui.xUtils;importjava.io.File;importorg.testng.Reporter;importjxl.Cell;importjxl.Sheet;impo ...

  3. Selenium+python怎么搭建自动化测试框架、执行自动化测试用例、生成自动化测试报告、发送测试报告邮件

    目录 一.项目结构介绍 1.mztestpro测试项目 2.bbs目录 3.test_case 二.编写公共模块 三.编写Page Object 四.编写测试用例 五.执行测试用例 小结: 本人在网上 ...

  4. Web 自动化解决方案 [开源项目] 基于 Selenium 的 Web 自动化测试框架完美版

    欢迎查阅Selenium(Web自动化测试框架体系) Selenium ) Selenium是一个用于Web应用程序的自动化测试工具,直接运行在浏览器中,就像真正的用户在操作一样• 支持的浏览器包括I ...

  5. 如何从零搭建自动化测试框架

    搭建的自动化测试框架要包括API测试,UI测试,APP测试三类.以上三类其实可以简化为两类,那就是: 1)接口自动化测试框架搭建 2)UI自动化测试框架搭建. 没问题,安排,且是手把手教你如何搭建以上 ...

  6. 如何搭建自动化测试框架

    序 今天先聊聊如何搭建自动化测试框架,主要会聊聊一些思路上的东西,从一个最简单的demo到把一个框架该有的组件都搭建好.本文主要以web自动化为例子,使用的语言是js. 一.什么是自动化测试框架 在了 ...

  7. 软件测试用例自动化框架,如何搭建自动化测试框架?

    序 今天先聊聊如何搭建自动化测试框架,主要会聊聊一些思路上的东西,从一个最简单的demo到把一个框架该有的组件都搭建好.本文主要以web自动化为例子,使用的语言是js. 一.什么是自动化测试框架 在了 ...

  8. 平安夜福利,送3本《从0到1搭建自动化测试框架》

    VOL 338 24 2021-12 今天距2022年8天 这是ITester软件测试小栈第338次推文 点击上方蓝字"ITester软件测试小栈"关注我,每周一.三.五早上 09 ...

  9. java自动化测试报告_Java自动化测试框架-10 - TestNG之测试结果篇(详细教程)

    1.-测试结果 1.1-成功,失败和断言 测试被认为是成功的,如果它不引发任何异常完成,还是它扔的预期异常(请参阅文档expectedExceptions属性上找到的@Test注释). 您的测试方法通 ...

最新文章

  1. 述说C#中的值类型和引用类型的千丝万缕
  2. Kibana + Elasticsearch + ik分词的集群搭建
  3. python requests post请求_实例解析Python3 如何利用requests 库进行post携带账号密码请求数据...
  4. 2018-北航-面向对象-前三次OO作业分析与小结
  5. 《机器学习》 周志华学习笔记第六章 支持向量机(课后习题)python 实现
  6. 文字转语音+html5,JS实现文字转语音并播放
  7. 安装eclipse的android adt 插件,eclipse安装ADT插件
  8. CRT工具连接Linux操作手册
  9. 危险的SharedPreference操作
  10. 065_VFPage中CallBack回调函数的解释
  11. 中国电信天翼网关路由器后台登录useradmin用户忘记密码的解决方法默认密码管理员密码工作人员密码
  12. STL格式零件的基本操作
  13. 数据库内容:用于园林施工与养护的学习软件系统
  14. 夜曲歌词 拼音_周杰伦夜曲乐谱及歌词
  15. 零基础可不可以学前端?我来告诉你
  16. IEEE Access投稿流程经验分享
  17. nginx基础:nginx访问限制
  18. 关于_WIN32_WINNT
  19. JavaScript里的var变量
  20. 计算机组成原理(一):计算机系统体系结构

热门文章

  1. bdf比特数字基金_第四届世界数字经济大会,比特元BTY作为协办方参与
  2. 案例精解:insert逻辑读暴增至20万,只因Oracle Recyclebin过大
  3. 不想业务被中断?快来解锁华为云RDS for MySQL新特性
  4. 详解图像处理的算术运算与逻辑运算
  5. 带你了解AKG正反向算子注册+关联流程
  6. MapReduce Service更换集群外部时钟源,仅需10步
  7. 【华为云技术分享】Python 中的异常和错误
  8. 【我的物联网成长记17】一条物联网设备控制命令的一生
  9. Kotlin学习笔记24 协程part4 协程的取消与超时
  10. 排序-交换类排序--快速排序简介