freeleaps-authentication/tests/conftest.py

11 lines
246 B
Python
Raw Normal View History

2025-10-30 03:26:05 +00:00
import pytest
from tests.base.authentication_web import AuthenticationWeb
@pytest.fixture
def authentication_web() -> AuthenticationWeb:
authentication_web = AuthenticationWeb()
authentication_web.login()
return authentication_web