From f414c723e4b839da69fa9275b3e371326a5a7223 Mon Sep 17 00:00:00 2001 From: Nico Verbruggen Date: Mon, 6 Mar 2023 22:11:44 +0100 Subject: [PATCH] =?UTF-8?q?=E2=9C=85=20Open=20additional=20windows?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/ui/MainMenuTest.swift | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/tests/ui/MainMenuTest.swift b/tests/ui/MainMenuTest.swift index dc4ff19..7589554 100644 --- a/tests/ui/MainMenuTest.swift +++ b/tests/ui/MainMenuTest.swift @@ -32,6 +32,23 @@ final class MainMenuTest: UITestCase { sleep(2) } + final func test_can_open_domains_list() throws { + let app = launch(openMenu: true) + app.mainMenuItem(withText: "mi_domain_list".localized).click() + } + + final func test_can_open_php_doctor() throws { + let app = launch(openMenu: true) + app.mainMenuItem(withText: "mi_other".localized).click() + app.mainMenuItem(withText: "mi_fa_php_doctor".localized).click() + } + + final func test_can_view_onboarding_flow() throws { + let app = launch(openMenu: true) + app.mainMenuItem(withText: "mi_other".localized).click() + app.mainMenuItem(withText: "mi_view_onboarding".localized).click() + } + final func test_can_open_about() throws { let app = launch(openMenu: true) app.mainMenuItem(withText: "mi_about".localized).click()