Skip to content

Commit ec983f4

Browse files
committed
Have jQuery scripts use https on load
1 parent 15d7149 commit ec983f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

seleniumbase/fixtures/base_case.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -722,7 +722,7 @@ def activate_jquery(self):
722722
pass
723723
self.execute_script(
724724
'''var script = document.createElement("script"); '''
725-
'''script.src = "http://code.jquery.com/jquery-3.2.1.min.js"; '''
725+
'''script.src = "https://code.jquery.com/jquery-3.2.1.min.js"; '''
726726
'''document.getElementsByTagName("head")[0]'''
727727
'''.appendChild(script);''')
728728
for x in range(int(settings.MINI_TIMEOUT * 10.0)):

0 commit comments

Comments
 (0)