Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix selenium #2

Merged
merged 9 commits into from
Sep 9, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
downgrade selenium
  • Loading branch information
mietzen committed Aug 2, 2023
commit 92f3cd1986832096daf7e75f64569adf2b51be06
2 changes: 1 addition & 1 deletion fritz_advanced_thermostat/fritz_advanced_thermostat.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ def __init__(self,
self._thermostats = []
# Setup selenium options
self._selenium_options = Options()
self._selenium_options.add_argument('--headless=new')
self._selenium_options.add_argument('--headless')
self._selenium_options.add_argument('--no-sandbox')
self._selenium_options.add_argument('--disable-gpu')
self._selenium_options.add_argument('--disable-dev-shm-usage')
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
fritzconnection>=1.12.2
pyfritzhome>=0.6.8
requests>=2.31.0
selenium>=4.11.2
selenium>=4.7.2
packaging>=23.1