Skip to content
This repository was archived by the owner on Jun 7, 2023. It is now read-only.

Commit 0d962dd

Browse files
committed
Increase timeout to 10 sec
1 parent 2260d53 commit 0d962dd

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

runestone/unittest_base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ def setUp(self):
221221
self.driver.implicitly_wait(5)
222222
# For cases where an implicit wait does not help. For example waiting for text to appear
223223
# after running an activecode. We create an explicit wait object.
224-
self.wait = WebDriverWait(self.driver, 5)
224+
self.wait = WebDriverWait(self.driver, 10)
225225

226226
def tearDown(self):
227227
# 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

Comments
 (0)