for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace hipanel\modules\finance\tests\_support\Page\price\certificate;
class Update extends Create
{
public function updatePrices(): void
$I = $this->tester;
$this->loadPage();
$I->click('Update');
$I->waitForText('Update');
$this->fillRandomPrices('');
$I->click('Save');
$I->closeNotification('Prices were successfully updated');
$this->seeRandomPrices();
}