Bug 1879886 - Remove unused functions from NavigationToolbarRobot

fenix/124.1.0
AndiAJ 4 months ago committed by mergify[bot]
parent 7f8dfd4e61
commit 1be6982290

@ -61,16 +61,11 @@ class NavigationToolbarRobot {
fun verifyUrl(url: String) =
onView(withId(R.id.mozac_browser_toolbar_url_view)).check(matches(withText(url)))
fun verifyNoHistoryBookmarks() = assertNoHistoryBookmarks()
fun verifyTabButtonShortcutMenuItems() = assertTabButtonShortcutMenuItems()
fun verifyReaderViewDetected(visible: Boolean = false) =
assertReaderViewDetected(visible)
fun verifyCloseReaderViewDetected(visible: Boolean = false) =
assertCloseReaderViewDetected(visible)
fun toggleReaderView() {
mDevice.findObject(
UiSelector()
@ -379,13 +374,6 @@ fun openEditURLView() {
Log.i(TAG, "openEditURLView: Edit URL bar displayed.")
}
private fun assertNoHistoryBookmarks() {
onView(withId(R.id.container))
.check(matches(not(hasDescendant(withText("Test_Page_1")))))
.check(matches(not(hasDescendant(withText("Test_Page_2")))))
.check(matches(not(hasDescendant(withText("Test_Page_3")))))
}
private fun assertTabButtonShortcutMenuItems() {
onView(withId(R.id.mozac_browser_menu_recyclerView))
.check(matches(hasDescendant(withText("Close tab"))))
@ -425,27 +413,6 @@ private fun assertReaderViewDetected(visible: Boolean) {
)
}
private fun assertCloseReaderViewDetected(visible: Boolean) {
mDevice.findObject(
UiSelector()
.description("Close reader view"),
)
.waitForExists(waitingTime)
onView(
allOf(
withParent(withId(R.id.mozac_browser_toolbar_page_actions)),
withContentDescription("Close reader view"),
),
).check(
if (visible) {
matches(withEffectiveVisibility(ViewMatchers.Visibility.VISIBLE))
} else {
ViewAssertions.doesNotExist()
},
)
}
private val searchSelectorButton =
mDevice.findObject(UiSelector().resourceId("$packageName:id/search_selector"))

Loading…
Cancel
Save