We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 935226b commit 9d4ec50Copy full SHA for 9d4ec50
py/selenium/webdriver/common/service.py
@@ -92,6 +92,8 @@ def start(self) -> None:
92
if "executable needs to be in PATH" in err.msg:
93
logger.debug("driver not found in PATH, trying Selenium Manager")
94
browser = self.__class__.__module__.split(".")[-2]
95
+ if browser == 'ie':
96
+ browser = 'iexplorer'
97
try:
98
path = SeleniumManager().driver_location(browser)
99
except WebDriverException as new_err:
0 commit comments