You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 7, 2023. It is now read-only.
Copy file name to clipboardExpand all lines: runestone/unittest_base.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -221,7 +221,7 @@ def setUp(self):
221
221
self.driver.implicitly_wait(5)
222
222
# For cases where an implicit wait does not help. For example waiting for text to appear
223
223
# after running an activecode. We create an explicit wait object.
224
-
self.wait=WebDriverWait(self.driver, 5)
224
+
self.wait=WebDriverWait(self.driver, 10)
225
225
226
226
deftearDown(self):
227
227
# Clear as much as possible, to present an almost-fresh instance of a browser for the next test. (Shutting down then starting up a browswer is very slow.)
0 commit comments