码迷,mamicode.com
首页 > 其他好文 > 详细

Cucumber行为驱动

时间:2018-01-21 20:38:54      阅读:417      评论:0      收藏:0      [点我收藏+]

标签:version   1.2   keyword   sea   turn   for   9.png   main   自然语言   

Cucumber行为驱动,

简称BDD,

其核心思想是把自然语言转换成代码;

但在敏捷开发的过程中,

这种东西极大的束缚了测试人员的手脚,

感觉它像封建时代的八股文,

要遵守严格的韵律,

反正我个人十分反感;

就像在做功能测试的时候,

那种基于Excel文档的测试。

 

用Maven构建Cucumber依赖:

    <dependency>
<groupId>info.cukes</groupId>
<artifactId>cucumber-java</artifactId>
<scope>test</scope>
<version>1.2.5</version>
</dependency>

<dependency>
<groupId>info.cukes</groupId>
<artifactId>cucumber-jvm</artifactId>
<version>1.2.5</version>
<type>pom</type>
</dependency>

<dependency>
<groupId>info.cukes</groupId>
<artifactId>cucumber-testng</artifactId>
<version>1.2.4</version>
</dependency>
</dependencies>

baiduSearch.feature配置文件:
# language: zh-CN

功能: 百度搜索的测试用例
场景大纲: 分别搜索<word>
假如我打开火狐浏览器
当输入百度的网址后,页面跳转到"https://www.baidu.com/"
当输入<word>,点击搜索按钮之后
那么页面标题会变为<result>
同时关闭火狐浏览器
例子:
|word |result |
|Selenium |Selenium_百度搜索 |
|JMeter |JMeter_百度搜索 |
|Appium |Appium_百度搜索 |

这个文件是可以直接运行的,会在控制台输出:

Undefined step: 假如 我打开火狐浏览器

Undefined step: 当 输入百度的网址后,页面跳转到"https://www.baidu.com/"

Undefined step: 当 输入Selenium,点击搜索按钮之后

Undefined step: 那么 页面标题会变为Selenium_百度搜索

Undefined step: 同时 关闭火狐浏览器

Undefined step: 假如 我打开火狐浏览器

Undefined step: 当 输入百度的网址后,页面跳转到"https://www.baidu.com/"

Undefined step: 当 输入JMeter,点击搜索按钮之后

Undefined step: 那么 页面标题会变为JMeter_百度搜索

Undefined step: 同时 关闭火狐浏览器

Undefined step: 假如 我打开火狐浏览器

Undefined step: 当 输入百度的网址后,页面跳转到"https://www.baidu.com/"

Undefined step: 当 输入Appium,点击搜索按钮之后

3 Scenarios (3 undefined)
15 Steps (15 undefined)
0m0.000s


You can implement missing steps with the snippets below:

@假如("^我打开火狐浏览器$")
public void 我打开火狐浏览器() throws Throwable {
// Write code here that turns the phrase above into concrete actions
throw new PendingException();
}

@当("^输入百度的网址后,页面跳转到\"([^\"]*)\"$")
public void 输入百度的网址后_页面跳转到(String arg1) throws Throwable {
Undefined step: 那么 页面标题会变为Appium_百度搜索

// Write code here that turns the phrase above into concrete actions
throw new PendingException();
}

@当("^输入Selenium,点击搜索按钮之后$")
public void 输入selenium_点击搜索按钮之后() throws Throwable {
// Write code here that turns the phrase above into concrete actions
throw new PendingException();
}

@那么("^页面标题会变为Selenium_百度搜索$")
public void 页面标题会变为selenium_百度搜索() throws Throwable {
// Write code here that turns the phrase above into concrete actions
throw new PendingException();
}
@那么("^关闭火狐浏览器$")
public void 关闭火狐浏览器() throws Throwable {
// Write code here that turns the phrase above into concrete actions
throw new PendingException();
}

@当("^输入JMeter,点击搜索按钮之后$")
public void 输入jmeter_点击搜索按钮之后() throws Throwable {
// Write code here that turns the phrase above into concrete actions
throw new PendingException();
}

@那么("^页面标题会变为JMeter_百度搜索$")
public void 页面标题会变为jmeter_百度搜索() throws Throwable {
// Write code here that turns the phrase above into concrete actions
throw new PendingException();
}

@当("^输入Appium,点击搜索按钮之后$")
public void 输入appium_点击搜索按钮之后() throws Throwable {
Undefined step: 同时 关闭火狐浏览器

// Write code here that turns the phrase above into concrete actions
throw new PendingException();
}

@那么("^页面标题会变为Appium_百度搜索$")
public void 页面标题会变为appium_百度搜索() throws Throwable {
// Write code here that turns the phrase above into concrete actions
throw new PendingException();}

 

测试用例CucumberBaidu.java:

import cucumber.api.java.zh_cn.假如;
import cucumber.api.java.zh_cn.同时;
import cucumber.api.java.zh_cn.当;
import cucumber.api.java.zh_cn.那么;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.testng.Assert;

public class CucumberBaidu {

public static WebDriver driver;

@假如("^我打开火狐浏览器$")
public void openFirefox() throws Throwable{
System.setProperty("webdriver.firefox.marionette",
"src/main/resourcec/geckodriver.exe");
driver = new FirefoxDriver();
driver.manage().window().maximize();
}

@当("^输入百度的网址后,页面跳转到\"(.*)\"$")
public void openBaiduHomePage(String url) throws Throwable{
driver.get(url);
}

@当("^输入(.*),点击搜索按钮之后$")
public void searchChina(String searchWord) throws Throwable{
driver.findElement(By.xpath(".//*[@id=‘kw‘]"))
.sendKeys(searchWord);
driver.findElement(By.xpath(".//*[@id=‘su‘]"))
.click();
Thread.sleep(2000);
}

@那么("^页面标题会变为(.*)$")
public void keyword(String searchResult) throws Throwable{
Assert.assertEquals(driver.getTitle(), searchResult);
Thread.sleep(2000);
}

@同时("^关闭火狐浏览器$")
public void quit(){
driver.close();
driver.quit();
}
}

驱动类CucumberDriver.java:
import cucumber.api.CucumberOptions;
import cucumber.api.testng.AbstractTestNGCucumberTests;

@CucumberOptions(
features = "baiduSearch.feature",
format = {"pretty",
"html:target/cucumber-html-report",
"json:target/cucumber-json-report.json"}
)
/*指定cucumber.feature文件,在工程的根目录下
命令行/控制台输出日志
生成html测试报告
生成json测试报告*/

public class CucumberDriver extends AbstractTestNGCucumberTests {

}

运行一把,查看测试报告:

技术分享图片

 



Cucumber行为驱动

标签:version   1.2   keyword   sea   turn   for   9.png   main   自然语言   

原文地址:https://www.cnblogs.com/yjlch1016/p/8325187.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!