Skip to content

Commit

Permalink
remove log_path
Browse files Browse the repository at this point in the history
  • Loading branch information
renanllisboa committed Dec 11, 2023
1 parent 782791d commit 5375f2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tir/technologies/core/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -1118,7 +1118,7 @@ def Start(self):
firefox_options = FirefoxOpt()
firefox_options.set_headless(self.config.headless)
logger().info("Before self.driver")
self.driver = webdriver.Firefox(options=firefox_options, executable_path=driver_path, log_path=log_path)
self.driver = webdriver.Firefox(options=firefox_options, executable_path=driver_path)
logger().info("After self.driver")
elif self.config.browser.lower() == "chrome":
chrome_options = ChromeOpt()
Expand Down

0 comments on commit 5375f2e

Please sign in to comment.