Skip to content

Commit

Permalink
selenium: raise exception on missing SELENIUM_CHROMEDRIVER_PATH
Browse files Browse the repository at this point in the history
  • Loading branch information
naisanzaa committed Jul 2, 2024
1 parent a0bfaac commit c7c39e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion automon/integrations/seleniumWrapper/webdriver_chrome.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def chromedriver_path(self):
if os.path.exists(path):
return path

logger.error('missing SELENIUM_CHROMEDRIVER_PATH')
raise Exception('missing SELENIUM_CHROMEDRIVER_PATH')

@property
def chromedriverVersion(self):
Expand Down

0 comments on commit c7c39e9

Please sign in to comment.