mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
Credit card: Pay with new
This commit is contained in:
parent
c108a5bcfc
commit
79306ec4be
@ -33,6 +33,26 @@ class CreditCardTest extends DuskTestCase
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function testPaymentWithNewCard()
|
||||||
|
{
|
||||||
|
$this->browse(function (Browser $browser) {
|
||||||
|
$browser
|
||||||
|
->visitRoute('client.invoices.index')
|
||||||
|
->click('@pay-now')
|
||||||
|
->click('@pay-now-dropdown')
|
||||||
|
->clickLink('Credit Card')
|
||||||
|
->withinFrame('iframe', function (Browser $browser) {
|
||||||
|
$browser
|
||||||
|
->type('EWAY_CARDNAME', 'Invoice Ninja')
|
||||||
|
->type('EWAY_CARDNUMBER', '4111 1111 1111 1111')
|
||||||
|
->type('EWAY_CARDEXPIRY', '04/22')
|
||||||
|
->type('EWAY_CARDCVN', '100');
|
||||||
|
})
|
||||||
|
->click('#pay-now')
|
||||||
|
->waitForText('Details of the payment', 60);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
public function testAddingCreditCardStandalone()
|
public function testAddingCreditCardStandalone()
|
||||||
{
|
{
|
||||||
$this->browse(function (Browser $browser) {
|
$this->browse(function (Browser $browser) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user