I am trying the following:
import webbrowser
url = 'http://docs.python.org/'
webbrowser.open_new_tab(url)
The result is a new window that is empty (the url does not get entered in the address line). The browser is Chrome (version 53.0.2785.92, 64-bit) running under Ubuntu 16.04 LTS. The version of Python is 3.5.2.
How can I fix this?
Try doing the following with your browser window open (UPDATE: Also tried with no browser windows open and the browser settings set to Open my windows and tabs from last time. Both trials tested with Chrome and Firefox)
From the documentation
Display url using the default browser. If new is 0, the url is opened in the same browser window if possible. If new is 1, a new browser window is opened if possible. If new is 2, a new browser page (“tab”) is opened if possible. If autoraise is True, the window is raised if possible (note that under many window managers this will occur regardless of the setting of this variable).