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:
-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