Skip to content

Commit

Permalink
Set the correct firefox location for Linux.
Browse files Browse the repository at this point in the history
  • Loading branch information
Stéphane Senart committed Jan 27, 2024
1 parent 312cd19 commit f9caac7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion pyveoliaidf/webdriverwrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit f9caac7

Please sign in to comment.