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

[fenix] Disabling tabstray collection tests until https://github.com/mozilla-mobile/fenix/issues/19090 is fixed

This commit is contained in:
Jonathan Almeida 2021-04-17 01:51:57 -04:00 committed by Jonathan Almeida
parent bc86a34797
commit be8873f8d4
2 changed files with 12 additions and 1 deletions

View File

@ -886,6 +886,7 @@ class SmokeTest {
}
}
@Ignore("Disabling until re-implemented by #19090")
@Test
fun verifyExpandedCollectionItemsTest() {
val webPage = TestAssetHelper.getGenericAsset(mockWebServer, 1)
@ -935,6 +936,7 @@ class SmokeTest {
}
}
@Ignore("Disabling until re-implemented by #19090")
@Test
fun shareCollectionTest() {
val webPage = TestAssetHelper.getGenericAsset(mockWebServer, 1)
@ -952,6 +954,7 @@ class SmokeTest {
}
}
@Ignore("Disabling until re-implemented by #19090")
@Test
fun deleteCollectionTest() {
val webPage = TestAssetHelper.getGenericAsset(mockWebServer, 1)

View File

@ -174,7 +174,15 @@ class TabDrawerRobot {
fun clickAddNewCollection() = addNewCollectionButton().click()
fun selectTab(title: String) = tab(title).click()
fun selectTab(title: String) {
mDevice.waitNotNull(
findObject(text(title)),
waitingTime
)
val tab = mDevice.findObject(text(title))
tab.click()
}
fun clickSaveCollection() = saveTabsToCollectionButton().click()