e2e_tests/wekan_test.py
2023-07-07 03:38:10 +02:00

13 lines
424 B
Python

from conftest import check_for, RECORDS
""" Test Wekan """
def test_wekan(admin_session):
context, page = admin_session
with page.expect_popup() as info:
page.get_by_role("link", name="Wekan").click()
wekan = info.value
wekan.get_by_role("link", name="Member Settings").click()
check_for(wekan.get_by_role("link", name=" Admin Panel"))
context.tracing.stop(path=f"{RECORDS}/wekan.zip")