作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个功能文件
Feature: Create Profile
Scenario: Create Profile
Given I want to create a profile
When I create a profile
Then I should be navigated to Home Page
Then sign out link should exist
Feature: Go to my account page
Scenario: Go to my account page
Given I want to go to my account page
When I go to my account page
Then I should be navigated to the my account page
"When I go to my account page"
步骤,用户应
"Create Profile"
.
When I create a profile
Then I should be navigated to Home Page
Then sign out link should exist
When I go to my account page
.
最佳答案
您看到后台 DSL 功能了吗?它适用于您的情况,但可能不是您真正要问的。在这种情况下,您可以要求用户通过以下方式创建配置文件:
Feature: Create Profile
Background:
Given I create a profile
And I should be navigated to Home Page
And sign out link should exist
Scenario: Create Profile
# do nothing because all actions are in background
Scenario: Go to my account page
When I go to my account page
Then I should be navigated to the my account page
关于selenium - 如何在cucumber-jvm中的另一个功能中调用一个功能?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10291303/
我是一名优秀的程序员,十分优秀!