2020-12-30 10:04:23 +01:00
|
|
|
import pytest
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture
|
|
|
|
def firefox_options(firefox_options):
|
|
|
|
firefox_options.add_argument('--headless')
|
2021-10-31 21:04:47 +01:00
|
|
|
firefox_options.add_argument('--width=1920')
|
|
|
|
firefox_options.add_argument('--height=1080')
|
2020-12-30 10:04:23 +01:00
|
|
|
return firefox_options
|