Skip to content

Commit 23a824f

Browse files
committed
Allow wait_timeout to be changed.
1 parent ff3e0a6 commit 23a824f

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

dash/testing/browser.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -636,3 +636,12 @@ def server_url(self, value):
636636
@property
637637
def download_path(self):
638638
return self._download_path
639+
640+
@property
641+
def wait_timeout(self):
642+
return self._wait_timeout
643+
644+
@wait_timeout.setter
645+
def wait_timeout(self, value):
646+
self._wait_timeout = value
647+
self._wd_wait = WebDriverWait(self.driver, value)

0 commit comments

Comments
 (0)