Tests - add headless option for e2e tests

This commit is contained in:
Sam
2020-12-30 10:04:23 +01:00
parent 5eefc963ad
commit e85f8cce53
96 changed files with 7 additions and 34057 deletions

7
e2e/conftest.py Normal file
View File

@ -0,0 +1,7 @@
import pytest
@pytest.fixture
def firefox_options(firefox_options):
firefox_options.add_argument('--headless')
return firefox_options