webbrowser python could not locate runnable browser

Solutions on MaxInterview for webbrowser python could not locate runnable browser by the best coders in the world

showing results for - "webbrowser python could not locate runnable browser"
Manuel
04 Oct 2020
1import webbrowser    
2urL='https://www.google.com'
3chrome_path="C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe"
4webbrowser.register('chrome', None,webbrowser.BackgroundBrowser(chrome_path))
5webbrowser.get('chrome').open_new_tab(urL)