11 lines
244 B
Python
11 lines
244 B
Python
import pytest
|
|
|
|
from tests.base.authentication_web import AuthenticationWeb
|
|
|
|
|
|
@pytest.fixture
|
|
def authentication_web()->AuthenticationWeb:
|
|
authentication_web = AuthenticationWeb()
|
|
authentication_web.login()
|
|
return authentication_web
|