2021-07-31 12:54:49 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Tests\Browser\ClientPortal\Gateways\Mollie;
|
|
|
|
|
|
|
|
use Laravel\Dusk\Browser;
|
|
|
|
use Tests\Browser\Pages\ClientPortal\Login;
|
|
|
|
use Tests\DuskTestCase;
|
|
|
|
|
|
|
|
class CreditCardTest extends DuskTestCase
|
|
|
|
{
|
|
|
|
protected function setUp(): void
|
|
|
|
{
|
|
|
|
parent::setUp();
|
|
|
|
|
|
|
|
foreach (static::$browsers as $browser) {
|
|
|
|
$browser->driver->manage()->deleteAllCookies();
|
|
|
|
}
|
|
|
|
|
|
|
|
// $this->disableCompanyGateways();
|
|
|
|
|
|
|
|
// CompanyGateway::where('gateway_key', '3758e7f7c6f4cecf0f4f348b9a00f456')->restore();
|
|
|
|
|
|
|
|
$this->browse(function (Browser $browser) {
|
|
|
|
$browser
|
|
|
|
->visit(new Login())
|
|
|
|
->auth();
|
|
|
|
});
|
|
|
|
}
|
2021-07-31 13:14:38 +02:00
|
|
|
|
|
|
|
public function testPayWithNewCreditCard()
|
|
|
|
{
|
|
|
|
$this->browse(function (Browser $browser) {
|
|
|
|
$browser
|
|
|
|
->visitRoute('client.invoices.index')
|
|
|
|
->click('@pay-now')
|
|
|
|
->press('Pay Now')
|
|
|
|
->clickLink('Credit Card')
|
|
|
|
->pause(5000)
|
|
|
|
->withinFrame('iframe[name=cardNumber-input]', function (Browser $browser) {
|
|
|
|
$browser->type('#cardNumber', '4242424242424242');
|
|
|
|
})
|
|
|
|
->withinFrame('iframe[name=cardHolder-input]', function (Browser $browser) {
|
|
|
|
$browser->type('#cardHolder', 'Invoice Ninja Test Suite');
|
|
|
|
})
|
|
|
|
->withinFrame('iframe[name=expiryDate-input]', function (Browser $browser) {
|
|
|
|
$browser->type('#expiryDate', '12/29');
|
|
|
|
})
|
|
|
|
->withinFrame('iframe[name=verificationCode-input]', function (Browser $browser) {
|
|
|
|
$browser->type('#verificationCode', '100');
|
|
|
|
})
|
|
|
|
->press('Pay Now')
|
|
|
|
->waitForText('Details of the payment', 60);
|
|
|
|
});
|
|
|
|
}
|
2021-07-31 12:54:49 +02:00
|
|
|
}
|