黄瓜 – 命令行选项
黄瓜 – 命令行选项
Cucumber 可用于测试几乎任何计算机系统。到目前为止,我们已经了解了如何使用 Eclipse IDE 运行测试。还有另一种方法可以通过命令行界面运行 Cucumber 测试。那么这样做有什么好处呢?
从终端运行任何测试框架都有其自身的优势,例如覆盖代码中提到的运行配置。
要在命令提示符下执行 Cucumber 测试,请在系统配置后使用以下步骤。
第 1 步– 创建一个名为commandLine的 Maven 测试项目。
-
转到文件 → 新建 → 其他 → Maven → Maven 项目 → 下一步。
-
提供组 ID(组 ID 将在所有项目中唯一标识您的项目)。
-
提供 artifact Id(artifact Id 是没有版本的 jar 的名称。您可以选择任何小写的名称)。
-
单击完成。
-
打开 pom.xml –
-
转到 Eclipse 左侧的包浏览器。
-
展开 CucumberTest 项目。
-
找到pom.xml文件。
-
右键单击并选择选项,使用“文本编辑器”打开。
-
-
为 Selenium 添加依赖项 – 这将指示 Maven,哪些 Selenium jar 文件将从中央存储库下载到本地存储库。
-
在编辑模式下打开 pom.xml,在项目标签内创建依赖标签(<dependencies></dependencies>)。
-
在依赖项标签内,创建依赖项标签。(<dependency></dependency>)。
-
在依赖项标记中提供以下信息。
-
<dependency> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-java</artifactId> <version>2.47.1</version> </dependency>
-
为 Cucumber-Java 添加依赖项 – 这将指示 Maven,哪些 Cucumber 文件将从中央存储库下载到本地存储库。
-
再创建一个依赖标签。
-
在依赖项标记中提供以下信息。
-
<dependency> <groupId>info.cukes</groupId> <artifactId>cucumber-java</artifactId> <version>1.0.2</version> <scope>test</scope> </dependency>
-
为 Cucumber-JUnit 添加依赖项 – 这将指示 Maven,哪些 Cucumber JUnit 文件将从中央存储库下载到本地存储库。
-
再创建一个依赖标签。
-
在依赖项标记中提供以下信息。
-
<dependency> <groupId>info.cukes</groupId> <artifactId>cucumber-junit</artifactId> <version>1.0.2</version> <scope>test</scope> </dependency>
-
为 JUnit 添加依赖项 – 这将指示 Maven,哪些 JUnit 文件将从中央存储库下载到本地存储库。
-
再创建一个依赖标签。
-
在依赖项标签内提供以下信息。
-
<dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.10</version> <scope>test</scope> </dependency>
-
验证二进制文件。
-
pom.xml 编辑成功后,保存。
-
转到项目→清洁 – 这将需要几分钟。
-
第 2 步– 在 src/test/java 下创建一个名为“outline”的包
第 3 步– 创建一个名为“commandLine.feature”的功能文件。
-
选择并右键单击包轮廓。
-
单击“新建”文件。
-
为文件命名,例如“commandLine.feature”
-
在文件中写入以下文本并保存。
功能– 场景大纲
Scenario Outline – 社交网站的登录功能。
鉴于用户导航到 Facebook
当我输入用户名为“<用户名>”和密码为“<密码>”时
那么登录应该是不成功的
例子
| username | password | | username1 | password1 | | username2 | password2 |
注意– 此处,示例注释描述了在场景执行时提供的输入范围。将为提供的每个输入执行测试场景。因此,在给定的示例中,测试场景将执行 3 次。
步骤 4 – 创建一个步骤定义文件。
-
选择并右键单击包轮廓。
-
单击“新建”文件。
-
将文件命名为commandLine.java
-
在文件中写入以下文本并保存。
package Outline; import org.openqa.selenium.By; import org.openqa.selenium.WebDriver; import org.openqa.selenium.firefox.FirefoxDriver; import cucumber.annotation.en.Given; import cucumber.annotation.en.Then; i import cucumber.annotation.en.When; public class stepdefinition { WebDriver driver = null; @Given("^user navigates to facebook$") public void goToFacebook() { driver = new FirefoxDriver(); driver.navigate().to("https://www.facebook.com/"); } @When("^I enter Username as \"([^\"]*)\" and Password as \"([^\"]*)\"$") public void I_enter_Username_as_and_Password_as(String arg1, String arg2) { driver.findElement(By.id("email")).sendKeys(arg1); driver.findElement(By.id("pass")).sendKeys(arg2); driver.findElement(By.id("u_0_v")).click(); } @Then("^login should be unsuccessful$") public void validateRelogin() { if(driver.getCurrentUrl().equalsIgnoreCase( "https://www.facebook.com/login.php?login_attempt=1&lwv=110")){ System.out.println("Test Pass"); } else { System.out.println("Test Failed"); } driver.close(); } }
注意– 在代码中,我们必须定义一个具有两个输入参数的函数:一个用户名,另一个用于密码。因此,对于示例标签中提供的每组输入,将执行一组 GIVEN、WHEN 和 THEN。
第 5 步– 创建一个跑步者类文件。
-
选择并右键单击包轮廓。
-
单击“新建”文件。
-
为文件命名,例如runTest.java
-
在文件中写入以下文本并保存。
package Outline; import org.junit.runner.RunWith; import cucumber.junit.Cucumber; @RunWith(Cucumber.class) @Cucumber.Options(format = {"pretty", "html:target/cucumber"}) public class runTest { }
-
打开命令提示符。
-
转到此包“commandLine”所在的目录。e:\Workspace\LoginTest\src>cd test\java
-
运行命令 mvn test:您将看到功能文件中描述的所有场景都已执行(如果没有任何错误)。最后,您会在底部找到以下信息。
结果
This describes the total test run, along with failure if any.
前面的命令运行 JUnit Runner 类中提到的所有内容。但是,如果我们想覆盖 Runner 中提到的配置,以下是一些示例。
-
现在在命令提示符下运行命令 mvn test – Dcucumber.options=”–help”。运行这将打印所有可用的选项。
-
要仅运行特定标签,请在命令提示符下运行命令 mvn test -Dcucumber.options=”–tags @SmokeTest”。它将只运行标记为@SmokeTest 的标签。
-
为了改变结果的格式,在命令提示符下运行命令 E:\Workspace\LoginTest>mvn test -Dcucumber.options=”–plugin junit:target/cucumber-junit-report.xml” 它改变了报告格式为 JUnit 报告生成器。