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