1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-19 16:01:34 +02:00

Working on tests

This commit is contained in:
Hillel Coren 2017-04-12 17:44:17 +03:00
parent aecc1bee3e
commit 84f1cdf44e

View File

@ -60,8 +60,9 @@ class GatewayFeesCest
$invoiceId = $I->grabFromDatabase('invitations', 'invoice_id', ['invitation_key' => $invitationKey]);
$invoicePublicId = $I->grabFromDatabase('invoices', 'public_id', ['id' => $invoiceId]);
$I->amOnPage('/invoices/' . $invoicePublicId . '/edit');
$I->wait(3);
$I->click('Save Invoice');
$I->wait(2);
$I->wait(3);
$this->createPayment($I, $invitationKey, $total + $partialFeeWithTax, 0, $partialFeeWithTax);
}