mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
bpo-34019: Fix wrong arguments for Opera Browser (#8047)
The Opera Browser was using a outdated command line invocation that resulted in an incorrect URL being opened in the browser when requested using the webbrowser module. * Correct the arguments passed to the Opera Browser when opening a new URL.
This commit is contained in:
parent
23401fb960
commit
3cf1f154ed
3 changed files with 13 additions and 12 deletions
|
@ -170,23 +170,23 @@ class OperaCommandTest(CommandTestMixin, unittest.TestCase):
|
|||
|
||||
def test_open(self):
|
||||
self._test('open',
|
||||
options=['-remote'],
|
||||
arguments=['openURL({})'.format(URL)])
|
||||
options=[],
|
||||
arguments=[URL])
|
||||
|
||||
def test_open_with_autoraise_false(self):
|
||||
self._test('open', kw=dict(autoraise=False),
|
||||
options=['-remote', '-noraise'],
|
||||
arguments=['openURL({})'.format(URL)])
|
||||
options=[],
|
||||
arguments=[URL])
|
||||
|
||||
def test_open_new(self):
|
||||
self._test('open_new',
|
||||
options=['-remote'],
|
||||
arguments=['openURL({},new-window)'.format(URL)])
|
||||
options=['--new-window'],
|
||||
arguments=[URL])
|
||||
|
||||
def test_open_new_tab(self):
|
||||
self._test('open_new_tab',
|
||||
options=['-remote'],
|
||||
arguments=['openURL({},new-page)'.format(URL)])
|
||||
options=[],
|
||||
arguments=[URL])
|
||||
|
||||
|
||||
class ELinksCommandTest(CommandTestMixin, unittest.TestCase):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue