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()