From a758ec782a3a12e23098c00bf412349000e6f737 Mon Sep 17 00:00:00 2001 From: Will Daly Date: Wed, 13 Nov 2013 14:48:10 -0500 Subject: [PATCH] Added explicit wait for payment page to load --- lms/djangoapps/courseware/features/certificates.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lms/djangoapps/courseware/features/certificates.py b/lms/djangoapps/courseware/features/certificates.py index 2e82afe787..30449da7bd 100644 --- a/lms/djangoapps/courseware/features/certificates.py +++ b/lms/djangoapps/courseware/features/certificates.py @@ -186,7 +186,7 @@ def confirm_details_match(step): @step(u'I am at the payment page') def at_the_payment_page(step): - assert world.css_find('input[name=transactionSignature]') + world.wait_for_present('input[name=transactionSignature]') @step(u'I submit valid payment information$')