【发布时间】:2020-12-03 03:05:04
【问题描述】:
这是我的一个场景的测试功能文件
Feature: My test feature
Scenario Outline: I want user to be logged into MyPage
When user goes to MyPage
And user fills "<test_login>" login field
And user fills "<test_password>" password field
And user clicks Login button
Then user should be logged in
Examples:
|test_login|test_password|
|login1234|password1234|
我想将我的示例:部分修改为类似的内容
Examples:
src/test/resources/datatables/logind_data.table
我想使用包含数据表的文件路径,但我收到 Cucumber gherkins builder 错误消息。 error_modal
是否可以在“示例:”中使用外部资源?
【问题讨论】:
标签: selenium automation cucumber gherkin