Completed
Push — master ( b864d9...3fa98b )
by Dmitry
07:42 queued 03:17
created

Update::updatePrices()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 12

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 12
rs 9.8666
c 0
b 0
f 0
cc 1
nc 1
nop 0
1
<?php
2
namespace hipanel\modules\finance\tests\_support\Page\price\certificate;
3
4
class Update extends Create
5
{
6
    public function updatePrices(): void
7
    {
8
        $I = $this->tester;
9
10
        $this->loadPage();
11
        $I->click('Update');
12
        $I->waitForText('Update');
13
        $this->fillRandomPrices('');
14
        $I->click('Save');
15
        $I->closeNotification('Prices were successfully updated');
16
        $this->seeRandomPrices();
17
    }
18
}
19