Answers for "python could not locate runnable browser"

1

webbrowser python could not locate runnable browser

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))
webbrowser.get('chrome').open_new_tab(urL)
Posted by: Guest on August-17-2020

Code answers related to "python could not locate runnable browser"

Python Answers by Framework

Browse Popular Code Answers by Language