- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
您好,我有一个场景,我需要测试搜索服务是否返回正确的结果。所以我的故事看起来像这样:
Narrative:
In order to easily discover if a player is registered in a loyalty program
As a customer service representative
I want to be able to search for registered players by player first and last name
Scenario: Retrieve Player information by First and Last Name
Given players registered in the Data Warehouse and some combination of Loyalty1 and/or Loyalty2 programs:
|first name|last name|city |province|loyalty1 |loyalty2|
|Pete |Walter |Winnipeg |<null> |false |true |
|Jon |Dewit |Winnipeg |MB |true |true |
|John |Dewit |<null> |<null> |true |true |
|Peter |Dewalt |<null> |<null> |true |false |
When the <firstnamecriteria> and <lastnamecriteria> criteria are specified
Then the system displays the correct results, using a case-insensitive "begins with" search as follows:
|firstnamecriteria|lastnamecriteria|results |
|Jo | ||first name|last name||
| | ||Jon |Dewit ||
| | ||John |Dewit ||
Examples:
|firstnamecriteria|lastnamecriteria|
|Jo | |
| |Dew |
|J |D |
“然后”部分下的表格将持续一段时间,使用名字/姓氏标准的不同排列,后面是结果列中预期结果的嵌套表格。示例部分将包含传递到“何时”部分的可能搜索条件列表
是否可以有这样的嵌套表?如果没有,我是否可以使用另一种方法来完成同样的事情?
最佳答案
据我了解,不直接支持这一点 - 尽管获取ExampleTable值作为参数将启动ParameterConverters - 默认情况下会设置ExampleTable ParameterConverter。我确信其中存在解析错误。
也就是说,您的“Then”需要适用于 Examples: 部分的所有行。我确信这就是为什么您考虑将它们全部放入“然后”中的原因 - 然后您可以挑选出正确的一个。
您可以执行以下操作吗:
Given players registered in the Data Warehouse and some combination of Loyalty1 and/or Loyalty2 programs:
|id|first name|last name|city |province|loyalty1 |loyalty2|
|1 |Pete |Walter |Winnipeg |<null> |false |true |
|2 |Jon |Dewit |Winnipeg |MB |true |true |
|3 |John |Dewit |<null> |<null> |true |true |
|4 |Peter |Dewalt |<null> |<null> |true |false |
When the <firstnamecriteria> and <lastnamecriteria> criteria are specified
Then the system displays the correct results, using a case-insensitive "begins with" search with users <userlist>
Examples:
|firstnamecriteria|lastnamecriteria|userlist|
|Jo | |2,3 |
| |Dew |2,3,4 |
|J |D |2,3 |
关于java - JBehave 中的嵌套表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9604520/
我使用 jBehave 和 WebDriver 创建了一些测试。 当我通过 Maven 执行它们时,执行是安全的: 测试 1 打开导航 执行第一个故事的所有步骤 关闭导航 测试 2 打开导航 执行第二
我想从 JBehave 生成一份报告,其中仅列出每个场景的名称和通过/失败状态。如果根据场景结果给出故事的通过/失败状态(如果所有场景都通过故事通过),则可获得奖励积分。像这样的东西: PASS:
我的故事情节如下 Scenario: Given user is on Login page When user types login details with xxx as user xxx as
我正在使用 JBehave 进行场景测试。 在使用教程时,我在 pom.xml 中收到如下错误 Missing artifact org.jbehave:jbehave-core:zip:resour
这是我可以开始工作的示例。 http://ivanz.com/2011/05/25/java-bdd-with-jbehave-and-watij-in-eclipse-with-junit/ 问题:
我在 eclipse 的 jbehave .feature 文件中使用 JUnitReportingRunner,如下所示。但仅运行 BeforeStories 和 AfterStories,并且 .
当我运行在 eclipse 中编写的 jbehave IT 测试时出现此异常。 org.jbehave.core.io.storyresourcenotfound 我在 test/java/packa
以下步骤: 创建新的 Maven Java 项目 下载 JBehave JAR 文件版本 3.6.8 并将其添加到配置构建路径 > 添加外部 jar 并添加 JUnit4 通过帮助安装 Eclipse
我不知道为什么,但 JBehave 没有考虑给定故事中的失败。如果给定故事发生故障,它将不会执行该故事的其余步骤,但会执行给定故事的其余步骤。这是一个例子: GivenStories: stories
我在 JBehave 中有一个“何时”,在某些情况下应该抛出异常。但是,我找不到任何有关如何处理此问题的文档。这是我的场景: 假设游戏有 6 个现有赌注,且游戏的最大赌注为 6当用户下注时 没有 th
我正在尝试创建并运行一个简单的 JUnitStory 来运行 .story 文件。 我有这个: class Scenario1 extends JUnitStory { @Delegate M
我已将 jbehave 与 Selenium 集成。我正在通过命令行运行测试,如下所示 C:\eclipse_workspace\MySeleniumTests>mvn clean test -Dwe
想象一下我有以下jBehave故事: When I create servers with properties: | processor | ram | os | | i5 | 8
我已经创建了故事/场景。喜欢: Scenario: Create a new Firm Given a Firm Test When Firm Test is valid Then New Firm
您好,我有一个场景,我需要测试搜索服务是否返回正确的结果。所以我的故事看起来像这样: Narrative: In order to easily discover if a player is reg
我正在尝试实现一个简单的程序来学习如何使用 jBehave!!。该程序正在添加两个数字。我从这里安装了eclipse的插件 http://jbehave.org/eclipse-integration
我为 JBehave 自动测试编写了一些场景。这里需要写几个相似的场景,不同的是常量参数。 为了不复制很多脚本,我希望将参数添加到我的故事中,并使用不同的参数多次调用它。 我如何使用“GivenSto
我的情况是这样的: 我有一个包含多个场景的 JBehave 故事。每个场景都会写入一些文件,检查它们是否符合预期。然后下一个场景的 @BeforeScenario 导致框架删除输出文件。 当某些场景失
我在 eclipse 中使用 maven 有一个 Jbehave 和 selenium 项目。最初我是为一个故事做的,但现在我写了两个故事,我希望这两个故事在测试中运行。但只有一个故事文件通过程序。我
我正在使用 JBehave 编写 BDD 集成测试。 问题:JBehave 在执行单个步骤时清除对象(实例变量)的状态 代码:步骤定义: public class StepDefs { pri
我是一名优秀的程序员,十分优秀!