Opening a link produces an empty page

1.5k Views Asked by At

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?

2

There are 2 best solutions below

4
On

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)

import webbrowser
webbrowser.open("http://docs.python.org", new=2)

From the documentation

webbrowser.open(url, new=0, autoraise=True)

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).

Note that on some platforms, trying to open a filename using this function, may work and start the operating system’s associated program. However, this is neither supported nor portable.
0
On

First, I tried:

>>> webbrowser.get('chrome')

This did not work. The reason is that the executable for Chrome is /usr/bin/google-chrome! So, I went to /usr/bin and issued the following command in the terminal:

sudo ln -s google-chrome chrome

Now, this works:

>>> webbrowser.get('chrome').open_new_tab('http://www.python.org')

P.S. I am still wondering how to get webbrowser.get('') to work. The default browser is set to be Google-Chrome-Stable...