mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-03 20:18:33 -05:00 
			
		
		
		
	Tests
This commit is contained in:
		
							parent
							
								
									0db3f3dd57
								
							
						
					
					
						commit
						81b06c25cd
					
				@ -38,17 +38,6 @@ class CreditCardTest extends DuskTestCase
 | 
			
		||||
        });
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    public function testAddingPaymentMethodShouldntBePossible()
 | 
			
		||||
    {
 | 
			
		||||
        $this->browse(function (Browser $browser) {
 | 
			
		||||
            $browser
 | 
			
		||||
                ->visitRoute('client.payment_methods.index')
 | 
			
		||||
                ->press('Add Payment Method')
 | 
			
		||||
                ->clickLink('Credit Card')
 | 
			
		||||
                ->assertSee('Checkout.com can be can saved as payment method for future use, once you complete your first transaction. Don\'t forget to check "Store credit card details" during payment process.');
 | 
			
		||||
        });
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    public function testPayWithNewCard()
 | 
			
		||||
    {
 | 
			
		||||
        $this->browse(function (Browser $browser) {
 | 
			
		||||
@ -117,4 +106,22 @@ class CreditCardTest extends DuskTestCase
 | 
			
		||||
                ->assertSee('Payment method has been successfully removed.');
 | 
			
		||||
        });
 | 
			
		||||
    }
 | 
			
		||||
    
 | 
			
		||||
    public function testAddingCreditCardStandalone() 
 | 
			
		||||
    {
 | 
			
		||||
        $this->browse(function (Browser $browser) {
 | 
			
		||||
            $browser
 | 
			
		||||
                ->visitRoute('client.payment_methods.index')
 | 
			
		||||
                ->press('Add Payment Method')
 | 
			
		||||
                ->clickLink('Credit Card')
 | 
			
		||||
                ->withinFrame('iframe', function (Browser $browser) {
 | 
			
		||||
                    $browser
 | 
			
		||||
                        ->type('cardnumber', '4242424242424242')
 | 
			
		||||
                        ->type('exp-date', '04/22')
 | 
			
		||||
                        ->type('cvc', '100');
 | 
			
		||||
                })
 | 
			
		||||
                ->press('#pay-button')
 | 
			
		||||
                ->waitForText('Details of payment method', 60);
 | 
			
		||||
        });
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user