diff --git a/CHANGELOG.md b/CHANGELOG.md index b96a2db..bc4b8f6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.3.4] - 2024-01-27 + +### Fixed +- Set the correct firefox location for Linux. + ## [0.3.3] - 2024-01-27 ### Fixed diff --git a/pyveoliaidf/webdriverwrapper.py b/pyveoliaidf/webdriverwrapper.py index e039866..fb614e3 100644 --- a/pyveoliaidf/webdriverwrapper.py +++ b/pyveoliaidf/webdriverwrapper.py @@ -43,7 +43,7 @@ def __init__(self, firefox_webdriver_executable: str, wait_time: int, tmp_direct options = webdriver.FirefoxOptions() # options.log.level = 'trace' - options.binary_location = "C:/Program Files/Mozilla Firefox/firefox.exe" + options.binary_location = "/usr/bin/firefox" if headLessMode: options.add_argument("--headless") options.profile = profile