From 994d4cab4d8ff4720c2d3fdab03bd6896a658a1e Mon Sep 17 00:00:00 2001 From: Roy Duineveld Date: Mon, 28 Feb 2022 15:11:14 +0100 Subject: [PATCH] Raised the browser test wait times --- tests/Browser/CheckoutTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/Browser/CheckoutTest.php b/tests/Browser/CheckoutTest.php index 759fe1f0b..6daf1ef2c 100644 --- a/tests/Browser/CheckoutTest.php +++ b/tests/Browser/CheckoutTest.php @@ -40,7 +40,7 @@ public function testCheckoutAsGuest($createAccountWithEmail = false) ->click('@method-0') // select shipping method ->waitUntilAllAjaxCallsAreFinished() ->click('@continue') // go to payment step - ->waitUntilAllAjaxCallsAreFinished(1000) + ->waitUntilAllAjaxCallsAreFinished(2000) ->click('@method-0') // select payment method ->waitUntilAllAjaxCallsAreFinished() ->click('@continue') // place order @@ -67,7 +67,7 @@ public function testCheckoutAsUser() ->type('@email', $email) ->click('@continue') ->waitUntilAllAjaxCallsAreFinished() - ->pause(500) + ->pause(1000) ->type('@password', 'IronManSucks.91939') ->click('@continue') // login ->waitUntilAllAjaxCallsAreFinished()