diff options
Diffstat (limited to 'tests/robot')
| -rw-r--r-- | tests/robot/__main__.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/robot/__main__.py b/tests/robot/__main__.py index 7f380aeda..0b438745e 100644 --- a/tests/robot/__main__.py +++ b/tests/robot/__main__.py @@ -7,6 +7,7 @@ import os import subprocess import traceback import pathlib +import shutil from splinter import Browser @@ -53,6 +54,9 @@ class SearxRobotLayer: def run_robot_tests(tests): print('Running {0} tests'.format(len(tests))) + print(f'{shutil.which("geckodriver")}') + print(f'{shutil.which("firefox")}') + for test in tests: with Browser('firefox', headless=True, profile_preferences={'intl.accept_languages': 'en'}) as browser: test(browser) |