You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

4 lines
241 B

  1. import webbrowser
  2. urL='https://drive.google.com'
  3. firefox_path="C:\\Program Files (x86)\\Mozilla Firefox\\firefox.exe"
  4. webbrowser.register('firefox', None,webbrowser.BackgroundBrowser(firefox_path))
  5. webbrowser.get('firefox').open_new_tab(urL)