-
Notifications
You must be signed in to change notification settings - Fork 804
Troubleshooting
I suggest joining the #tech-support channel in Discord for personal assistance if these common fixes don't help.
Error: No config file found, see here on how to fix this: https://github.com/Hari-Nagarajan/nvidia-bot#amazon
The script cannot find the config file (you didn't rename it, or windows decided it's a text file and gave it the wrong extension). Check the file is named exactly amazon_config.json
Error: "amazon_config.json file not formatted properly."
The config file is missing elements that are required for it to parse correctly. See here for how a properly formatted config file should look.
Error: selenium.common.exceptions.WebDriverException: Message: unknown error: cannot find Chrome binary
The issue is that chrome is not installed in the expected location. See Selenium Wiki and the section on overriding the Chrome binary location .
The easy fix for this is to add an option where selenium is used (`selenium_utils.py``)
chrome_options.binary_location="C:\Users\%USERNAME%\AppData\Local\Google\Chrome\Application\chrome.exe"
Error: selenium.common.exceptions.SessionNotCreatedException: Message: session not created: This version of ChromeDriver only supports Chrome version 85
You are not running the proper version of Chrome this requires. As of this update, the current version is Chrome 85. Check your version by going to chrome://version/
in your browser. We are going to be targeting the current stable build of chrome. If you are behind, please update, if you are on a beta or canary branch, you'll have to build your own version of chromedriver-py.