Conditions | 1 |
Paths | 1 |
Total Lines | 20 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
20 | private function ensureICanSeeAdvancedSearchBox(Client $I) |
||
21 | { |
||
22 | $I->see('Advanced search'); |
||
23 | $I->seeLink('Recharge account', Url::to('@pay/deposit')); |
||
24 | |||
25 | $index = new IndexPage($I); |
||
26 | $index->containsFilters('form-advancedsearch-bill-search', [ |
||
27 | ['input' => ['placeholder' => 'Currency']], |
||
28 | ['input' => [ |
||
29 | 'id' => 'billsearch-time_from', |
||
30 | 'name' => 'date-picker', |
||
31 | ]], |
||
32 | ['input' => ['placeholder' => 'Type']], |
||
33 | ['input' => ['placeholder' => 'Servers']], |
||
34 | ['input' => ['placeholder' => 'Description']], |
||
35 | ]); |
||
36 | |||
37 | $I->see('Date', 'label'); |
||
38 | $I->see('Tariff', 'span'); |
||
39 | } |
||
40 | |||
53 |