Skip to content

Commit

Permalink
Merge pull request #644 from bareos/dev/fbergkemper/bareos-19.2/test-…
Browse files Browse the repository at this point in the history
…branch

add alternative chromedriver locations and add webui to pkglists Leap 15.1
  • Loading branch information
fbergkemper committed Nov 2, 2020
2 parents f9f8eb2 + e1e812f commit f3f851a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 2 additions & 0 deletions docs/pkglists/openSUSE_Leap_15.1.x86_64
Expand Up @@ -20,9 +20,11 @@ debug/x86_64/bareos-storage-python-plugin-debuginfo
debug/x86_64/bareos-storage-tape-debuginfo
debug/x86_64/bareos-tools-debuginfo
debug/x86_64/bareos-traymonitor-debuginfo
noarch/bareos-webui
noarch/python2-bareos
noarch/python3-bareos
src/bareos
src/bareos-webui
src/python-bareos
x86_64/bareos
x86_64/bareos-bconsole
Expand Down
4 changes: 3 additions & 1 deletion webui/tests/selenium/webui-selenium-test.py
Expand Up @@ -545,8 +545,10 @@ def enter_input(self, inputname, inputvalue):
def getChromedriverpath(self):
if SeleniumTest.chromedriverpath is None:
for chromedriverpath in [
"/usr/local/sbin/chromedriver",
"/usr/bin/chromedriver",
"/usr/sbin/chromedriver",
"/usr/local/bin/chromedriver",
"/usr/local/sbin/chromedriver"
]:
if os.path.isfile(chromedriverpath):
return chromedriverpath
Expand Down

0 comments on commit f3f851a

Please sign in to comment.