diff options
Diffstat (limited to 'searx/testing.py')
| -rw-r--r-- | searx/testing.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/testing.py b/searx/testing.py index 647c236fd..08a53e3f4 100644 --- a/searx/testing.py +++ b/searx/testing.py @@ -71,7 +71,7 @@ class SearxRobotLayer(): def run_robot_tests(tests): print('Running {0} tests'.format(len(tests))) for test in tests: - with Browser() as browser: + with Browser('firefox', headless=True) as browser: test(browser) |