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

Commit 25d4f21

Browse files
committed
make implicit wait 10 secs also
1 parent 7aec7e9 commit 25d4f21

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
@@ -218,7 +218,7 @@ def setUp(self):
218218
self.driver = mf.driver
219219
self.host = HOST_URL
220220
# Add an `implicit wait <https://selenium-python.readthedocs.io/waits.html#implicit-waits>`_.
221-
self.driver.implicitly_wait(5)
221+
self.driver.implicitly_wait(10)
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.
224224
self.wait = WebDriverWait(self.driver, 10)

0 commit comments

Comments
 (0)