一、导工程
-
本地导入,拷贝项目压缩
1.放置工程目录下
2.解压
-
在线导入(git)
1.使用idea open打开
2.项目代码地址
3.保存地的工程目录
4.命令行操作导入
git clone 代码地址
-
场景的代码版本管理工具
csv
svn
git
二、工程木结构
- main:开发代码
java:业务代码
rsource:资源文件
webapp:界面 - text:测试代码
java:测试代码
resource:测试用的资源 -
pom.xml:maven配置信息
三、工程操作
新建包:package
新建类:class
新建方法:methcd
新建配置:xml
四、编写脚本
1.新建业务类
2.继承 extends 父类 BaseUI
3.新建方法
4.新建党阀使用 @test注解
driver:驱动
findelement:查找元素
clear:清除
senkeys:输入
click:点击
alert:弹窗
accept:同意
switchTo:切换
八种定位方式:
id定位
name定位
class name class样式定位
tag name 根据标签名定位
link text 文本链接定位
partial link text 文本链接模糊匹配定位
xpath:路径定位
css selector 样式表达式定位
对象/变量:Webelement,Alert
5.右键执行类
6.右键执行方法
7.新建textNG配置文件
xml控制脚本流程
suite:套件
test:测试集
classes:类集合
class:类
methods:方法
include:方法名
8.右键使用配置文件执行测试脚本
五、测试业务流程
果芽测试
果芽登录
import com.google.common.annotations.VisibleForTesting;
import com.guoyasoft.autoUI.common.BaseUI;
import org.openqa.selenium.Alert;
import org.openqa.selenium.By;
import org.openqa.selenium.WebElement;
import org.testng.annotations.Test;
/**
* @program: guoya-test.git
* @description:
* @author: Administrator
* @create: 2018-11-13 11:34
**/
public class GuoyaLogin extends BaseUI {
//public 公开的方法 void 无返回 login()方法名
//添加teseng注解用来执行测试方法
@Test
public void login() {
driver.get("http://47.98.226.232:8080/guoya-medium/jsp/user/login.jsp");
sleep(2000);
//查询元素根据name查找 然后执行清除
driver.findElement(By.name("userName")).clear();
//查找元素根据name查找 执行输入
driver.findElement(By.name("userName")).sendKeys("guoya888");
sleep(2000);
driver.findElement(By.id("password")).clear();
driver.findElement(By.id("password")).sendKeys("qweasd");
sleep(2000);
driver.findElement(By.id("//input[@name='checkCode']")).sendKeys("12345");
sleep(2000);
driver.findElement(By.xpath("//input[@id='loginBtn']")).click();
}
@Test
public void signup() {
driver.get("http://47.98.226.232:8080/guoya-medium/jsp/user/signUp.jsp");
//清除用户名
WebElement element=driver.findElement(By.xpath("//input[@id='userName']"));
element.click();
element.sendKeys("wzj1234");
element.sendKeys("");
driver.findElement(By.xpath("//input[@id='userName']")).sendKeys("ywx888");
driver.findElement(By.xpath("//input[@id='realName']")).sendKeys("asdfg");
driver.findElement(By.xpath("//input[@id='password']")).sendKeys("zxcvbn");
driver.findElement(By.xpath("//input[@id='password2']")).sendKeys("zxcvbn");
driver.findElement(By.xpath("//input[@id='phone']")).sendKeys("13460235689");
driver.findElement(By.xpath("//input[@id='age']")).sendKeys("20");
driver.findElement(By.xpath("//input[@id='checkCode']")).sendKeys("1234");
driver.findElement(By.xpath("//input[@id='checkCode']")).click();
//弹出窗口 是否确定
driver.switchTo().alert().accept();
Alert alert = driver.switchTo().alert();
alert.accept();
alert.accept();
//点击确认
}
}
<!--代表套件-->
<suite name="yewx">
<!--text 代表测试用例集-->
<test name="test0" preserve-order="true" enabled="true">
<!--classes 代表类集合可执行多个类-->
<classes>
<!--class 代表单个类-->
<class name="com.guoyasoft.autoUI.guoya_1810.GuoyaLogin">
<!--methods 代表方法集-->
<methods>
<!--include 代表方法名-->
<include name="signup" />
<include name="login" />
</methods>
</class>
</classes>
</test>
</suite>
思维导图: