How to fix 'chromedriver' executable needs to be available in the path
By Tan Lee Published on Dec 09, 2024 710
To fix the error "chromedriver executable needs to be available in the PATH", follow these steps.
How to fix 'chromedriver' executable needs to be available in the path?
To test if ChromeDriver is in the PATH, open a command prompt, type chromedriver
, and press Enter. If you see "Starting ChromeDriver 131.0.6778.87" (or similar), the PATH is correctly set, and the issue lies elsewhere.
Alternatively, you can specify the direct path to the ChromeDriver executable in your script to avoid relying on the PATH environment variable.
driver = webdriver.Chrome('/path/to/chromedriver');
In your specific case, you can directly reference the path to the ChromeDriver executable in your script to resolve the issue.
driver = webdriver.Chrome("C:/Users/DELL/Downloads/chromedriver_win32/chromedriver.exe");
Categories
Popular Posts
RuangAdmin Template
Nov 13, 2024
How to secure ASP.NET Core with NWebSec
Nov 07, 2024
Elegent Material UI React Admin Dashboard Template
Nov 19, 2024
Material Admin Dashboard Template
Nov 15, 2024