Browser file not found
See original GitHub issueusing the sample code I have been getting the following output
Traceback (most recent call last): File "C:\Users\user\Desktop\file.py", line 2, in <module> web = Browser() File "C:\Users\user\AppData\Local\Programs\Python\Python37-32\lib\site-packages\webbot\webbot.py", line 50, in __init__ os.chmod(driverpath , 0o755 ) FileNotFoundError: [WinError 2] The system cannot find the file specified: 'C:\\Users\\user\\AppData\\Local\\Programs\\Python\\Python37-32\\lib\\site-packages\\webbot\\drivers\\chrome_windows'
The file does exist the in the given directory, I’m assuming that I’ve bugged up the installation somehow?
(selenium is installed, maybe also an issue with pip?)
Issue Analytics
- State:
- Created 5 years ago
- Reactions:2
- Comments:5 (1 by maintainers)
Top Results From Across the Web
local HTML file in browser showing "File not found" error
Local Web server on Localhost. Try using this command to start a web server locally. cd /home/nono/pihouse python -m SimpleHTTPServer 8080.
Read more >How to Solve The HTML5 Video 'File Not Found' Error?
5 Ways to solve 'HTML5 Video File Not Found' error · Update your browser · Remove cookies and cache · Toggle hardware acceleration...
Read more >HTML5 Video File Not Found? Fix It with 6 Ways [Updated]
If your browser error "HTML5 video file not found", it means that your browser is not up to date or website pages does...
Read more >What does "File not found" mean on a web page? - Super User
This error just says that the resource ie webpage, music file, video or whichever type of file you have requested could not be...
Read more >How to solve the HTML5 Video 'File Not Found' error
If you come across an HTML5 page with the following error message “file not found,” then it means your browser doesn't have the...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

The fix I used was edit the webbot.py found at ‘C:\Users\user\AppData\Local\Programs\Python\Python37-32\lib\site-packages\webbot\webbot.py’
and change line 45 from:
driverfilename = 'chrome_windows'->driverfilename = 'chrome_windows.exe'The issue is fixed .