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:
parent
bc86a34797
commit
be8873f8d4
@ -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)
|
||||
|
@ -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()
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user