I am trying to access the internet with Google Chrome but every time I use webbrowser.open(url)
it opens IE.
So I checked to make sure I have Chrome as my default, which I do, and I tried using the get()
function to link the actual Chrome application but it gives me this error instead:
File "C:\Users\xxx\AppData\Local\Programs\Python\Python36\lib\webbrowser.py", line 51, in get raise Error("could not locate runnable browser") webbrowser.Error: could not locate runnable browser
I also tried to open other browsers but it gives the same error. It also reads IE as my default and only runnable browser.
What could be happening? Is there an alternative?
Using Python 3.6.
I found a solution. Put a '%s' after the path of your browser. For example; change this:
"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe"
to this:
"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe %s"
This has worked for me.
I too faced the same problem. What you can do is to register the browser and then launch a new tab. Something like this:
import webbrowser
urL='https://www.google.com'
chrome_path="C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe"
webbrowser.register('chrome', None,webbrowser.BackgroundBrowser(chrome_path),1)
webbrowser.get('chrome').open_new_tab(urL)
And it works. From the docs webbrowser.register(name, constructor, instance=None).
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With