8 lines
144 B
Python
8 lines
144 B
Python
import pytest
|
|
|
|
|
|
@pytest.fixture
|
|
def firefox_options(firefox_options):
|
|
firefox_options.add_argument('--headless')
|
|
return firefox_options
|