new-features #5

Merged
dan merged 73 commits from wordpress-nextcloud into dev 2023-12-04 12:46:32 +01:00
Showing only changes of commit 4af494e047 - Show all commits

View file

@ -11,10 +11,10 @@ def test_visit_from_domain(authentik_admin_context: BrowserContext, dotenv_confi
page.goto(url)
# look for content wrapper
expect(page.locator("#wpcontent")).to_be_visible()
expect(page.locator("#wpcontent")).to_be_visible(timeout=3_000)
# look for admin bar
expect(page.locator("#wpadminbar")).to_be_visible()
expect(page.locator("#wpadminbar")).to_be_visible(timeout=3_000)
def test_visit_from_authentik(authentik_admin_page: Page, DIR: DirManager):