Skip to content

Commit 06c4a33

Browse files
committed
🙏 increase sleep time for non linux go to page
1 parent c9e1849 commit 06c4a33

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/fr_selenium.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -186,10 +186,10 @@ def go_to_page(self):
186186
time.sleep(1)
187187
self.driver.get("http://localhost:{}".format(self.port))
188188
self.on_page = True
189-
if not_on_linux(): time.sleep(7) # bcs serialization of multiprocessing
189+
if not_on_linux(): time.sleep(10) # bcs serialization of multiprocessing
190190

191191
def clear_requests(self, sleep_time_s=1):
192-
time.sleep(1)
192+
time.sleep(sleep_time_s)
193193
del self.driver.requests
194194

195195
def get_requests(self, delete: bool = True):

0 commit comments

Comments
 (0)