Conditions | 2 |
Paths | 2 |
Total Lines | 15 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
7 | public function updatePrices(): void |
||
8 | { |
||
9 | $I = $this->tester; |
||
10 | |||
11 | $this->loadPage(); |
||
12 | for ($i = 1; $i < 10; $i++) { |
||
13 | $I->click("(//tbody/tr/td/input[@type='checkbox'])[{$i}]"); |
||
14 | } |
||
15 | $I->click('Update'); |
||
16 | $I->waitForText('Update'); |
||
17 | $this->fillRandomPrices('templateprice'); |
||
18 | $I->click('Save'); |
||
19 | $I->closeNotification('Prices were successfully updated'); |
||
20 | $this->seeRandomPrices(); |
||
21 | } |
||
22 | } |
||
23 |