1
0
Fork 0
fenix/app/src/androidTest/java/org/mozilla/fenix/ui/robots/LibraryRobot.kt

47 lines
1.5 KiB
Kotlin
Raw Normal View History

/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
@file:Suppress("TooManyFunctions")
package org.mozilla.fenix.ui.robots
import androidx.test.espresso.Espresso.onView
import androidx.test.espresso.action.ViewActions.click
import androidx.test.espresso.matcher.ViewMatchers.withContentDescription
import androidx.test.espresso.matcher.ViewMatchers.withId
import androidx.test.espresso.matcher.ViewMatchers.withText
import androidx.test.uiautomator.UiDevice
import androidx.test.platform.app.InstrumentationRegistry
import org.hamcrest.CoreMatchers.allOf
import org.mozilla.fenix.R
/**
* Implementation of Robot Pattern for the your library menu.
*/
class LibraryRobot {
fun verifyLibraryView() = assertLibraryView()
class Transition {
val mDevice = UiDevice.getInstance(InstrumentationRegistry.getInstrumentation())
fun goBack(interact: HomeScreenRobot.() -> Unit): HomeScreenRobot.Transition {
mDevice.waitForIdle()
goBackButton().perform(click())
HomeScreenRobot().interact()
return HomeScreenRobot.Transition()
}
}
}
private fun assertLibraryView() {
// verify that we are in the correct library view
onView(allOf(withId(R.id.libraryItemTitle)))
onView(allOf(withText("Bookmarks")))
}
private fun goBackButton() = onView(allOf(withContentDescription("Navigate up")))