create authentik_admin_page fixture
This commit is contained in:
parent
e709264d44
commit
0b6243ca93
1 changed files with 13 additions and 1 deletions
|
|
@ -1,7 +1,8 @@
|
||||||
import json
|
import json
|
||||||
|
|
||||||
import pytest
|
import pytest
|
||||||
from playwright.sync_api import BrowserContext
|
from dotenv import dotenv_values
|
||||||
|
from playwright.sync_api import BrowserContext, Page
|
||||||
|
|
||||||
from src.dirmanager import DirManager
|
from src.dirmanager import DirManager
|
||||||
|
|
||||||
|
|
@ -17,6 +18,17 @@ def admin_context(context: BrowserContext, DIR: DirManager) -> BrowserContext:
|
||||||
return context
|
return context
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.fixture
|
||||||
|
def authentik_admin_page(admin_context: BrowserContext, DIR: DirManager) -> Page:
|
||||||
|
page = admin_context.new_page()
|
||||||
|
page.pause()
|
||||||
|
authentik_env_file = DIR.ENV_FILES / "authentik"
|
||||||
|
authentik_config: dict[str, str] = dotenv_values(authentik_env_file) # type: ignore
|
||||||
|
url = "https://" + authentik_config["DOMAIN"]
|
||||||
|
page.goto(url)
|
||||||
|
return page
|
||||||
|
|
||||||
|
|
||||||
@pytest.fixture
|
@pytest.fixture
|
||||||
def user_context(context: BrowserContext, DIR: DirManager) -> BrowserContext:
|
def user_context(context: BrowserContext, DIR: DirManager) -> BrowserContext:
|
||||||
state_file = DIR.STATES / "user_state.json"
|
state_file = DIR.STATES / "user_state.json"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue