From f6ee61d9855fe5fdbad48d3bb69c3b60b4f6aed0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Beganovi=C4=87?= Date: Sun, 15 Aug 2021 16:25:42 +0200 Subject: [PATCH] Credit card: Pay with new card and save for future use --- .../Gateways/Eway/CreditCardTest.php | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/tests/Browser/ClientPortal/Gateways/Eway/CreditCardTest.php b/tests/Browser/ClientPortal/Gateways/Eway/CreditCardTest.php index 0f3bbeb997bf..d4a9c1773723 100644 --- a/tests/Browser/ClientPortal/Gateways/Eway/CreditCardTest.php +++ b/tests/Browser/ClientPortal/Gateways/Eway/CreditCardTest.php @@ -53,6 +53,30 @@ class CreditCardTest extends DuskTestCase }); } + public function testPayWithNewCardAndSaveForFutureUse() + { + $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'); + }) + ->radio('#proxy_is_default', true) + ->click('#pay-now') + ->waitForText('Details of the payment', 60) + ->visitRoute('client.payment_methods.index') + ->clickLink('View') + ->assertSee('1111'); + }); + } + public function testAddingCreditCardStandalone() { $this->browse(function (Browser $browser) {