我是黄瓜的新手。我想在黄瓜中编写以下场景:
Feature: Withdraw Fixed Amount
The "Withdraw Cash" menu contains several fixed amounts to
speed up transactions for users.
Scenario Outline: Withdraw fixed amount
Given I have <Balance> in my account
When I choose to withdraw the fixed amount of <Withdrawal>
Then I should receive <Received> cash
And the balance of my account should be <Remaining>
Examples:
| Balance | Withdrawal | Received | Remaining |
| $500 | $50 | $50 | $450 |
| $500 | $100 | $100 | $400 |
我想从这样的文件中读取数据(示例:):$500;$50;;$50;$450 $500;$100;$100;$400
我不确定我是否可以从黄瓜的功能文件或步骤定义中读取数据。有人可以对此有所了解吗?非常感谢!