Chrome path in browser_settings. Chrome test done

This commit is contained in:
Alessandro Maggio
2021-01-14 13:13:45 +01:00
parent 47ae6e41da
commit 209f40bfae
6 changed files with 37 additions and 8 deletions

View File

@@ -72,3 +72,14 @@ If you already have a `twitch-cookies.pkl` and you don't want to login again ple
+-- cookies
| +-- your-twitch-username.pkl
```
## Use Chrome instead Firefox
If you prefer Chrome instead Firefox please download the WebDriver matching with your Chrome version and OS from this link: https://chromedriver.chromium.org/downloads.
Extract the archivie, copy the chromedriver file in this project folder.
Edit your run.py file and the browser_settings should something like this:
```python
browser_settings=BrowserSettings(
browser=Browser.CHROME,
chrome_path="/path/of/your/chromedriver" # If no path was provided the script will try to search automatically
),
```