Skip to content

Commit ff3e0a6

Browse files
committed
Unsilence get_webdriver errors.
1 parent e48674a commit ff3e0a6

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

dash/testing/browser.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -449,11 +449,7 @@ def open_new_tab(self, url=None):
449449
)
450450

451451
def get_webdriver(self):
452-
try:
453-
return getattr(self, f"_get_{self._browser}")()
454-
except WebDriverException:
455-
logger.exception("<<<Webdriver not initialized correctly>>>")
456-
return None
452+
return getattr(self, f"_get_{self._browser}")()
457453

458454
def _get_wd_options(self):
459455
options = (

0 commit comments

Comments
 (0)