如您所见,我正在尝试从.yml
位于表中的文件中config/environments
获取值Examples:
。
但是不是获取它而是按原样发送值?
可以这样传递参数吗?如果是,如何?
如果不是,那么 Ruby 或 Cucumber 的哪个特性/概念会阻止用户这样做,为什么?
Feature: Verify login of all test users
I want to verify all test users can login.
Scenario Outline: Login as different users on the website
Given I am on login page
When I enter "<username>" and password
Then I click Login button
And I see "<user>" successfully logged in
Examples:
|user|username|
|testuser1|#{FigNewton.test1_email}|
|testuser2|FigNewton.test2_email|