[fenix] Bug 1807298 - re-enable deleteAllSearchEnginesTest UI test

pull/600/head
AndiAJ 2 years ago committed by mergify[bot]
parent b202aaf17c
commit 1e4b9190a4

@ -9,6 +9,7 @@ import org.junit.Rule
import org.junit.Test
import org.mozilla.fenix.R
import org.mozilla.fenix.customannotations.SmokeTest
import org.mozilla.fenix.ext.settings
import org.mozilla.fenix.helpers.AndroidAssetDispatcher
import org.mozilla.fenix.helpers.HomeActivityIntentTestRule
import org.mozilla.fenix.helpers.RecyclerViewIdlingResource
@ -17,6 +18,7 @@ import org.mozilla.fenix.helpers.TestAssetHelper.getGenericAsset
import org.mozilla.fenix.helpers.TestHelper
import org.mozilla.fenix.helpers.TestHelper.appContext
import org.mozilla.fenix.helpers.TestHelper.exitMenu
import org.mozilla.fenix.helpers.TestHelper.runWithCondition
import org.mozilla.fenix.helpers.TestHelper.setTextToClipBoard
import org.mozilla.fenix.ui.robots.homeScreen
import org.mozilla.fenix.ui.robots.navigationToolbar
@ -376,7 +378,6 @@ class SettingsSearchTest {
}
}
@Ignore("Test failure caused by: https://bugzilla.mozilla.org/show_bug.cgi?id=1807298")
// Expected for en-us defaults
@Test
fun deleteAllSearchEnginesTest() {
@ -384,23 +385,46 @@ class SettingsSearchTest {
}.openThreeDotMenu {
}.openSettings {
}.openSearchSubMenu {
deleteMultipleSearchEngines(
"Google",
"Bing",
"Amazon.com",
"DuckDuckGo",
"eBay",
)
verifyDefaultSearchEngine("Wikipedia")
verifyThreeDotButtonIsNotDisplayed("Wikipedia")
openAddSearchEngineMenu()
verifyAddSearchEngineListContains(
"Google",
"Bing",
"Amazon.com",
"DuckDuckGo",
"eBay",
)
runWithCondition(!appContext.settings().showUnifiedSearchFeature) {
// If the feature is disabled run old steps.
deleteMultipleSearchEngines(
"Google",
"Bing",
"Amazon.com",
"DuckDuckGo",
"eBay",
)
verifyDefaultSearchEngine("Wikipedia")
verifyThreeDotButtonIsNotDisplayed("Wikipedia")
openAddSearchEngineMenu()
verifyAddSearchEngineListContains(
"Google",
"Bing",
"Amazon.com",
"DuckDuckGo",
"eBay",
)
}
runWithCondition(appContext.settings().showUnifiedSearchFeature) {
// Run steps suitable for the enabled unified search feature.
deleteMultipleSearchEngines(
"Google",
"Bing",
"Amazon.com",
"eBay",
"Wikipedia",
)
verifyDefaultSearchEngine("DuckDuckGo")
verifyThreeDotButtonIsNotDisplayed("DuckDuckGo")
openAddSearchEngineMenu()
verifyAddSearchEngineListContains(
"Google",
"Bing",
"Amazon.com",
"eBay",
"Wikipedia",
)
}
}
}

Loading…
Cancel
Save