* general project refactoring * various small improvements * improve imap fixture with helper functions and typing * add wordpress send email setup * add wordpress receive email test * add various documentation Reviewed-on: local-it-infrastructure/e2e_tests#13 Co-authored-by: Daniel <d.brummerloh@gmail.com> Co-committed-by: Daniel <d.brummerloh@gmail.com>
14 lines
640 B
Python
14 lines
640 B
Python
from playwright.sync_api import BrowserContext, expect
|
|
|
|
from pytest_abra.dir_manager import DirManager
|
|
|
|
|
|
def test_wordpress(admin_session: BrowserContext, env_config: dict[str, str], DIR: DirManager):
|
|
page_authentik = admin_session.new_page()
|
|
with page_authentik.expect_popup() as event_context:
|
|
page_authentik.get_by_role("link", name="Wordpress").click()
|
|
page_wordpress = event_context.value
|
|
|
|
expect(page_wordpress.locator("#wpcontent")).to_be_visible()
|
|
if "locale" in env_config and "de" in env_config["locale"]:
|
|
expect(page_wordpress.get_by_role("heading")).to_have_text("Willkommen bei WordPress!")
|