launch google chrome using python

Solutions on MaxInterview for launch google chrome using python by the best coders in the world

showing results for - "launch google chrome using python"
Giacomo
08 Mar 2019
1import webbrowser
2
3url = 'https://meet.google.com/rhj-yyzz-com'
4webbrowser.register('chrome',
5	None,
6	webbrowser.BackgroundBrowser("C://Program Files (x86)//Google//Chrome//Application//chrome.exe"))
7webbrowser.get('chrome').open(url)