File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -111,6 +111,12 @@ def manual_page_check(self, *args):
111
111
elif instructions and "?" in instructions :
112
112
question = instructions
113
113
114
+ wait_time_before_verify = WAIT_TIME_BEFORE_VERIFY
115
+ if self .verify_delay :
116
+ wait_time_before_verify = float (self .verify_delay )
117
+ # Allow a moment to see the full page before the dialog box pops up
118
+ time .sleep (wait_time_before_verify )
119
+
114
120
use_jqc = False
115
121
self .wait_for_ready_state_complete ()
116
122
if js_utils .is_jquery_confirm_activated (self .driver ):
@@ -126,12 +132,6 @@ def manual_page_check(self, *args):
126
132
use_jqc = False
127
133
128
134
if use_jqc :
129
- wait_time_before_verify = WAIT_TIME_BEFORE_VERIFY
130
- if self .verify_delay :
131
- wait_time_before_verify = float (self .verify_delay )
132
- # Allow a moment to see the full page before the dialog box pops up
133
- time .sleep (wait_time_before_verify )
134
-
135
135
# Use the jquery_confirm library for manual page checks
136
136
self .jq_confirm_dialog (question )
137
137
time .sleep (0.02 )
You can’t perform that action at this time.
0 commit comments