Skip to content

Commit

Permalink
Allow wait_timeout to be changed.
Browse files Browse the repository at this point in the history
  • Loading branch information
T4rk1n committed Feb 8, 2023
1 parent ff3e0a6 commit 23a824f
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions dash/testing/browser.py
Original file line number Diff line number Diff line change
Expand Up @@ -636,3 +636,12 @@ def server_url(self, value):
@property
def download_path(self):
return self._download_path

@property
def wait_timeout(self):
return self._wait_timeout

@wait_timeout.setter
def wait_timeout(self, value):
self._wait_timeout = value
self._wd_wait = WebDriverWait(self.driver, value)

0 comments on commit 23a824f

Please sign in to comment.