2
0
mirror of https://github.com/fork-maintainers/iceraven-browser synced 2024-11-03 23:15:31 +00:00

[fenix] Disable/fix tests that rely on Select Tabs button

This commit is contained in:
Jonathan Almeida 2021-04-15 21:23:39 -04:00 committed by Jonathan Almeida
parent 7a372f13f9
commit a63d26f673
2 changed files with 5 additions and 1 deletions

View File

@ -1049,6 +1049,7 @@ class SmokeTest {
}
}
@Ignore("Feature is temporarily removed; disabling test. See https://github.com/mozilla-mobile/fenix/issues/18656")
@Test
fun selectTabsButtonVisibilityTest() {
homeScreen {

View File

@ -160,7 +160,10 @@ class TabDrawerRobot {
fun clickTabMediaControlButton() = tabMediaControlButton().click()
fun clickSelectTabs() = onView(withText("Select tabs")).click()
fun clickSelectTabs() {
threeDotMenu().click()
onView(withText("Select tabs")).click()
}
fun clickAddNewCollection() = addNewCollectionButton().click()