Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
20 | private function ensureICanSeeDepositBox(Client $I) |
||
21 | { |
||
22 | $url = Url::to('@pay/deposit'); |
||
23 | $form = "//form[@action='$url']"; |
||
24 | $I->see('Amount', "$form/label"); |
||
25 | $I->seeElement('input', ['id' => 'depositform-amount']); |
||
26 | $text = 'Enter the amount of the replenishment in dollars. For example: 8.79'; |
||
27 | $I->see($text, $form); |
||
28 | $I->see('Proceed', "$form/button[@type='submit']"); |
||
29 | } |
||
30 | |||
44 |