21 lines
666 B
Python
21 lines
666 B
Python
import pytest
|
|
|
|
from tests.base.authentication_web import AuthenticationWeb
|
|
|
|
|
|
@pytest.fixture(scope="session")
|
|
def authentication_web()->AuthenticationWeb:
|
|
authentication_web = AuthenticationWeb()
|
|
authentication_web.login()
|
|
return authentication_web
|
|
|
|
|
|
@pytest.fixture(scope="session")
|
|
def authentication_web_of_temp_user1() -> AuthenticationWeb:
|
|
authentication_web = AuthenticationWeb()
|
|
user = authentication_web.create_temporary_user()
|
|
authentication_web.user_email = user["email"]
|
|
authentication_web.password = user["password"]
|
|
authentication_web.user_id = user["user_id"]
|
|
authentication_web.login()
|
|
return authentication_web |