| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 34 | public function fillNoteWithoutAjax(string $note, int $row): void |
||
| 35 | { |
||
| 36 | $this->tester->click("div.price-item:nth-child($row) a.editable"); |
||
| 37 | (new Input($this->tester, "div.price-item:nth-child($row) div.editable-input input")) |
||
| 38 | ->setValue($note); |
||
| 39 | $this->tester->click("div.price-item:nth-child($row) button[type=submit]"); |
||
| 40 | } |
||
| 41 | } |
||
| 43 |