You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
iceraven-browser/app/src/androidTest/java/org/mozilla/fenix/ui/robots/HistoryRobot.kt

40 lines
1.4 KiB
Kotlin

package org.mozilla.fenix.ui.robots
import androidx.test.espresso.Espresso.onView
import androidx.test.espresso.assertion.ViewAssertions
import androidx.test.espresso.matcher.ViewMatchers.withText
import androidx.test.espresso.matcher.ViewMatchers.withParent
import androidx.test.espresso.matcher.ViewMatchers.withId
import androidx.test.espresso.matcher.ViewMatchers.withEffectiveVisibility
import androidx.test.espresso.matcher.ViewMatchers.Visibility
import androidx.test.espresso.matcher.ViewMatchers.withContentDescription
import org.hamcrest.Matchers.allOf
import org.mozilla.fenix.R
import org.mozilla.fenix.helpers.click
class HistoryRobot {
fun verifyHistoryMenuView() = assertHistoryView()
class Transition {
fun goBack(interact: LibraryRobot.() -> Unit): LibraryRobot.Transition {
goBackButton().click()
LibraryRobot().interact()
return LibraryRobot.Transition()
}
}
}
fun historyMenu(interact: HistoryRobot.() -> Unit): HistoryRobot.Transition {
HistoryRobot().interact()
return HistoryRobot.Transition()
}
private fun assertHistoryView() {
onView(allOf(withText("History"), withParent(withId(R.id.navigationToolbar))))
.check(ViewAssertions.matches(withEffectiveVisibility(Visibility.VISIBLE)))
}
private fun goBackButton() = onView(withContentDescription("Navigate up"))