Revision 7606bc9d6b70744b1afcdf8b946af67fce5211ec authored by Anne van Kesteren on 09 March 2017, 10:59:34 UTC, committed by Anne van Kesteren on 14 May 2018, 08:31:24 UTC
Closes #5064.
1 parent fcb5082
Raw File
conftest.py
import pytest
from tests.support.fixtures import (
    add_browser_capabilites, configuration, create_dialog, create_frame,
    create_window, http, new_session, server_config, session, url)

pytest.fixture()(add_browser_capabilites)
pytest.fixture(scope="session")(configuration)
pytest.fixture()(create_dialog)
pytest.fixture()(create_frame)
pytest.fixture()(create_window)
pytest.fixture()(http)
pytest.fixture(scope="function")(new_session)
pytest.fixture()(server_config)
pytest.fixture(scope="function")(session)
pytest.fixture()(url)
back to top