私はきゅうりの初心者です。キュウリでコーディングしたい次のシナリオがあります。
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
キュウリの機能ファイルまたはステップ定義からデータを読み取ることができるかどうかわかりません。誰かがこれにいくつかの光を当ててくれませんか?どうもありがとう!