cucumber+selenium自动化测试(一)
1.1 BDD介绍
行为驱动开发(Behavior Driven Development,BDD)简历在测试驱动开发的基础上,并且优化了很多TDD实践者的良好习惯。BDD可以通过自然语言来描写自动化测试,增加自动化的可阅读性.
1.2 cucumber原理
reshen目前有很多BDD的框架,ruby中的cucumber、Python中的Behave、Lettuce以及Freshen等,对于java语言,可以使用cucumber的java把版本。
cucumber是BDD比较著名的框架,官网地址(https://cucumber.io/).cucumber是一个命令行工具。运行时会从普通语言编写的称为特性(feature)的文件里面读取说明,接卸需要的场景(scenario),然后执行这些场景达到测试目的。每个场景由步骤(step)组成,cucumber会一步一步执行这些步骤。
imagecucumber测试栈(来自cucumber:行为驱动指南)
1.3 cucumber关键字介绍
cucumber使用Gherkin语言进行编写,它可以描写需求、系统设计和模块等的行为。它可以作为自动化验收测试,自动化系统测试,自动化继承设计。行为描述和步骤定义是cucumber程序中重要的组成部分。
1.3.1 行为描述
我们来看下官网的一张图:
image在官网的事例中:我们可以看到绿色的几个字段,这就是我们需要了解的关键字。
用户行为描述在.feature文件中,包含以下元素:
Featur(特性):一个feature代表一个功能,相当于testsuit。
Scenario(场景):用于描述一个用例,相当于test case。
step,包含Given,When,Then这些词,用来定义场景的步骤,对于这些词可以个男实际中根据语义使用。
Given(给):给定场景所需要的环境,一个前置的条件。
When(当):一个用户事件,比如点击,输入等。
Then(则):定义验证结果,平常测试中的验证点,断言。
@tag:注解(Annotation)
将cucumber跟junit3对应关系
|feature |test suit |
|scenario |test case |
|given |setup |
|when |test |
|then |assert |
|@tag |@tag |
1.3.2 步骤定义
用户行为完成后就要开始进行步骤定义,步骤定义可以理解为用代码来完成各个步骤的执行的动作,完整的一个步骤定义包含:注解,方法和实现过程。
我们来看下官网的一个例子:
行为描述:
<iframe id="code-iframe76" frameborder="0" data-code-lang="plain" data-code-str="Feature: Is it Friday yet?
Everybody wants to know when it's Friday
Scenario: Sunday isn't Friday
Given today is Sunday
When I ask whether it's Friday yet
Then I should be told "Nope"" data-start-line="1" src="https://yuedu.baidu.com/static/bookeditor/js/spublishUeditor/dialogs/insertcode/insertcode.html?code-iframe76" class="code-iframe" style="width: 675px; margin: 10px 0px; display: block; height: 209px;"></iframe>
步骤定义:
<iframe id="code-iframe77" frameborder="0" data-code-lang="plain" data-code-str="@Given("^today is Sunday$")
public void today_is_Sunday() {
// Write code here that turns the phrase above into concrete actions
throw new PendingException();
}
@When("^I ask whether it's Friday yet$")
public void i_ask_whether_is_s_Friday_yet() {
// Write code here that turns the phrase above into concrete actions
throw new PendingException();
}
@Then("^I should be told &quot;([^&quot;]*)&quot;$")
public void i_should_be_told(String arg1) {
// Write code here that turns the phrase above into concrete actions
throw new PendingException();
}" data-start-line="1" src="https://yuedu.baidu.com/static/bookeditor/js/spublishUeditor/dialogs/insertcode/insertcode.html?code-iframe77" class="code-iframe" style="width: 675px; margin: 10px 0px; display: block; height: 479px;"></iframe>
说明:步骤定义中通常包含正则表达式,比如given,通常以^匹配开始$匹配结束,当匹配到这个行为后,将会执行today_is_Sunday()方法。
百度阅读地址:https://yuedu.baidu.com/ebook/a097d5ffd4bbfd0a79563c1ec5da50e2524dd1dc