1
0
Fork 0

For #2294 - History URL is cut with a large font set (#6724)

* For #2294 - History URL is cut with a large font se

* Update HistoryRobot.kt
master
Patrick Martin 2019-11-21 15:05:59 -08:00 committed by Tiger Oakes
parent f18c047132
commit 3e436f59e2
2 changed files with 5 additions and 4 deletions

View File

@ -138,7 +138,7 @@ private fun assertTestPageTitle(title: String) = testPageTitle()
.check(matches(withText(title)))
private fun assertPageUrl(expectedUrl: Uri) = pageUrl()
.check(matches(withEffectiveVisibility(ViewMatchers.Visibility.VISIBLE)))
.check(matches(ViewMatchers.isCompletelyDisplayed()))
.check(matches(withText(Matchers.containsString(expectedUrl.toString()))))
private fun assertDeleteConfirmationMessage() =

View File

@ -33,8 +33,9 @@
android:visibility="gone" />
<org.mozilla.fenix.library.LibrarySiteItemView
android:id="@+id/history_layout"
android:layout_width="match_parent"
android:layout_height="56dp" />
android:id="@+id/history_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:minHeight="@dimen/library_item_height" />
</LinearLayout>