diff --git a/tests/Browser/ClientPortal/Gateways/WePay/CreditCardTest.php b/tests/Browser/ClientPortal/Gateways/WePay/CreditCardTest.php new file mode 100644 index 000000000000..fb90cd543b5d --- /dev/null +++ b/tests/Browser/ClientPortal/Gateways/WePay/CreditCardTest.php @@ -0,0 +1,54 @@ +driver->manage()->deleteAllCookies(); + } + + $this->browse(function (Browser $browser) { + $browser + ->visit(new Login()) + ->auth(); + }); + } + + public function testPayWithNewCard() + { + $this->markTestSkipped('Issue with wrong parameter passing. Error 500 on backend.'); + + $this->browse(function (Browser $browser) { + $browser + ->visitRoute('client.invoices.index') + ->click('@pay-now') + ->press('Pay Now') + ->clickLink('Credit Card') + ->type('card-number', '4003830171874018') + ->type('card-holders-name', 'John Doe') + ->type('.expiry', '12/28') + ->type('cvc', '100') + ->press('Pay Now') + ->waitForText('Details of the payment', 60); + }); + } +}