From 7c2fcaffc6342cdb289bbf08cf171af439c22a9c Mon Sep 17 00:00:00 2001 From: Harry Volker Date: Sun, 7 Nov 2021 13:05:24 +0000 Subject: [PATCH] added --remote-debugging-port to chrome options to allow tests to run on ubuntu 20.04 --- tests/test_int.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/test_int.py b/tests/test_int.py index b5678f9..818bddc 100644 --- a/tests/test_int.py +++ b/tests/test_int.py @@ -25,6 +25,7 @@ def setUp(self): chrome_options = webdriver.chrome.options.Options() chrome_options.add_argument('--headless') + chrome_options.add_argument('--remote-debugging-port=9222') self.driver = webdriver.Chrome(options=chrome_options)