Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/bareos/bareos.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilipp Storz <philipp.storz@bareos.com>2022-11-10 20:53:29 +0300
committerGitHub <noreply@github.com>2022-11-10 20:53:29 +0300
commit7be0e441b0e80696d2ef476c42c817ae4f92af6c (patch)
tree4e8245d345b7ce893ab560c164d3ae079e070b53
parent5edede9ad6c920c922c2e3ce6e11efc5460dc2ec (diff)
parente2a6b08dc85dc557bdf10e2fe57f1e650196a941 (diff)
Merge pull request #1306
webui-selenium-test: use `options` instead of `chrome_options`
-rw-r--r--CHANGELOG.md1
-rwxr-xr-xwebui/tests/selenium/webui-selenium-test.py2
2 files changed, 2 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index b3bf5ce09..d1dcb44cd 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -148,6 +148,7 @@ and since Bareos version 20 this project adheres to [Semantic Versioning](https:
- Prepare Bareos for an upgrade to the C++20 standard [PR #1271]
- stored: refactor the SD's backend interface [PR #1272]
- core: use distinct names for JobControlRecordPrivate [PR #1307]
+- webui-selenium-test: use options instead of chrome_options [PR #1306]
### Deprecated
- make_catalog_backup.pl is now a shell wrapper script which will be removed in version 23.
diff --git a/webui/tests/selenium/webui-selenium-test.py b/webui/tests/selenium/webui-selenium-test.py
index a1e73cd80..7fe1ccca8 100755
--- a/webui/tests/selenium/webui-selenium-test.py
+++ b/webui/tests/selenium/webui-selenium-test.py
@@ -258,7 +258,7 @@ class SeleniumTest(unittest.TestCase):
opt.add_argument("--no-sandbox")
self.driver = webdriver.Chrome(
- self.chromedriverpath, chrome_options=opt
+ self.chromedriverpath, options=opt
)
elif self.browser == "firefox":
d = DesiredCapabilities.FIREFOX