mirror of
https://github.com/fork-maintainers/iceraven-browser
synced 2024-11-15 18:12:54 +00:00
[fenix] Create new MatcherHelper object
This commit is contained in:
parent
0d0eef9abe
commit
7cd3bc2c64
@ -0,0 +1,62 @@
|
|||||||
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
||||||
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||||
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||||||
|
|
||||||
|
package org.mozilla.fenix.helpers
|
||||||
|
|
||||||
|
import androidx.test.uiautomator.UiObject
|
||||||
|
import androidx.test.uiautomator.UiSelector
|
||||||
|
import org.junit.Assert.assertTrue
|
||||||
|
import org.mozilla.fenix.helpers.TestAssetHelper.waitingTime
|
||||||
|
import org.mozilla.fenix.helpers.TestHelper.mDevice
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Helper for querying and interacting with items based on their matchers.
|
||||||
|
*/
|
||||||
|
object MatcherHelper {
|
||||||
|
|
||||||
|
fun itemWithResId(resourceId: String) =
|
||||||
|
mDevice.findObject(UiSelector().resourceId(resourceId))
|
||||||
|
|
||||||
|
fun itemContainingText(itemText: String) =
|
||||||
|
mDevice.findObject(UiSelector().textContains(itemText))
|
||||||
|
|
||||||
|
fun checkedItemWithResId(resourceId: String, isChecked: Boolean) =
|
||||||
|
mDevice.findObject(UiSelector().resourceId(resourceId).checked(isChecked))
|
||||||
|
|
||||||
|
fun itemWithResIdAndDescription(resourceId: String, description: String) =
|
||||||
|
mDevice.findObject(UiSelector().resourceId(resourceId).descriptionContains(description))
|
||||||
|
|
||||||
|
fun itemWithResIdAndText(resourceId: String, text: String) =
|
||||||
|
mDevice.findObject(UiSelector().resourceId(resourceId).text(text))
|
||||||
|
|
||||||
|
fun assertItemWithResIdExists(vararg appItems: UiObject) {
|
||||||
|
for (appItem in appItems) {
|
||||||
|
assertTrue(appItem.waitForExists(waitingTime))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fun assertItemContainingTextExists(vararg appItems: UiObject) {
|
||||||
|
for (appItem in appItems) {
|
||||||
|
assertTrue(appItem.waitForExists(waitingTime))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fun assertCheckedItemWithResIdExists(vararg appItems: UiObject) {
|
||||||
|
for (appItem in appItems) {
|
||||||
|
assertTrue(appItem.waitForExists(waitingTime))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fun assertItemWithResIdAndDescriptionExists(vararg appItems: UiObject) {
|
||||||
|
for (appItem in appItems) {
|
||||||
|
assertTrue(appItem.waitForExists(waitingTime))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fun assertItemWithResIdAndTextExists(vararg appItems: UiObject) {
|
||||||
|
for (appItem in appItems) {
|
||||||
|
assertTrue(appItem.waitForExists(waitingTime))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -37,7 +37,6 @@ import androidx.test.espresso.matcher.ViewMatchers.withHint
|
|||||||
import androidx.test.espresso.matcher.ViewMatchers.withId
|
import androidx.test.espresso.matcher.ViewMatchers.withId
|
||||||
import androidx.test.espresso.matcher.ViewMatchers.withText
|
import androidx.test.espresso.matcher.ViewMatchers.withText
|
||||||
import androidx.test.uiautomator.By
|
import androidx.test.uiautomator.By
|
||||||
import androidx.test.uiautomator.UiObject
|
|
||||||
import androidx.test.uiautomator.UiScrollable
|
import androidx.test.uiautomator.UiScrollable
|
||||||
import androidx.test.uiautomator.UiSelector
|
import androidx.test.uiautomator.UiSelector
|
||||||
import androidx.test.uiautomator.Until
|
import androidx.test.uiautomator.Until
|
||||||
@ -54,6 +53,16 @@ import org.mozilla.fenix.R
|
|||||||
import org.mozilla.fenix.ext.components
|
import org.mozilla.fenix.ext.components
|
||||||
import org.mozilla.fenix.helpers.Constants.LISTS_MAXSWIPES
|
import org.mozilla.fenix.helpers.Constants.LISTS_MAXSWIPES
|
||||||
import org.mozilla.fenix.helpers.Constants.LONG_CLICK_DURATION
|
import org.mozilla.fenix.helpers.Constants.LONG_CLICK_DURATION
|
||||||
|
import org.mozilla.fenix.helpers.MatcherHelper.itemContainingText
|
||||||
|
import org.mozilla.fenix.helpers.MatcherHelper.checkedItemWithResId
|
||||||
|
import org.mozilla.fenix.helpers.MatcherHelper.itemWithResId
|
||||||
|
import org.mozilla.fenix.helpers.MatcherHelper.itemWithResIdAndDescription
|
||||||
|
import org.mozilla.fenix.helpers.MatcherHelper.itemWithResIdAndText
|
||||||
|
import org.mozilla.fenix.helpers.MatcherHelper.assertItemContainingTextExists
|
||||||
|
import org.mozilla.fenix.helpers.MatcherHelper.assertCheckedItemWithResIdExists
|
||||||
|
import org.mozilla.fenix.helpers.MatcherHelper.assertItemWithResIdExists
|
||||||
|
import org.mozilla.fenix.helpers.MatcherHelper.assertItemWithResIdAndDescriptionExists
|
||||||
|
import org.mozilla.fenix.helpers.MatcherHelper.assertItemWithResIdAndTextExists
|
||||||
import org.mozilla.fenix.helpers.TestAssetHelper.waitingTime
|
import org.mozilla.fenix.helpers.TestAssetHelper.waitingTime
|
||||||
import org.mozilla.fenix.helpers.TestAssetHelper.waitingTimeShort
|
import org.mozilla.fenix.helpers.TestAssetHelper.waitingTimeShort
|
||||||
import org.mozilla.fenix.helpers.TestHelper.appContext
|
import org.mozilla.fenix.helpers.TestHelper.appContext
|
||||||
@ -76,15 +85,15 @@ class HomeScreenRobot {
|
|||||||
" service provider, it makes it easier to keep what you do online private from anyone" +
|
" service provider, it makes it easier to keep what you do online private from anyone" +
|
||||||
" else who uses this device."
|
" else who uses this device."
|
||||||
|
|
||||||
fun verifyNavigationToolbar() = assertAppItemsWithResourceId(navigationToolbar)
|
fun verifyNavigationToolbar() = assertItemWithResIdExists(navigationToolbar)
|
||||||
fun verifyFocusedNavigationToolbar() = assertFocusedNavigationToolbar()
|
fun verifyFocusedNavigationToolbar() = assertFocusedNavigationToolbar()
|
||||||
fun verifyHomeScreen() = assertAppItemsWithResourceId(homeScreen)
|
fun verifyHomeScreen() = assertItemWithResIdExists(homeScreen)
|
||||||
|
|
||||||
fun verifyHomeScreenAppBarItems() =
|
fun verifyHomeScreenAppBarItems() =
|
||||||
assertAppItemsWithResourceId(homeScreen, privateBrowsingButton, homepageWordmark)
|
assertItemWithResIdExists(homeScreen, privateBrowsingButton, homepageWordmark)
|
||||||
|
|
||||||
fun verifyHomeScreenWelcomeItems() =
|
fun verifyHomeScreenWelcomeItems() =
|
||||||
assertAppItemsContainingText(welcomeHeader, welcomeSubHeader)
|
assertItemContainingTextExists(welcomeHeader, welcomeSubHeader)
|
||||||
|
|
||||||
fun verifyChooseYourThemeCard(
|
fun verifyChooseYourThemeCard(
|
||||||
isDarkThemeChecked: Boolean,
|
isDarkThemeChecked: Boolean,
|
||||||
@ -92,28 +101,28 @@ class HomeScreenRobot {
|
|||||||
isAutomaticThemeChecked: Boolean,
|
isAutomaticThemeChecked: Boolean,
|
||||||
) {
|
) {
|
||||||
scrollToElementByText(getStringResource(R.string.onboarding_theme_picker_header))
|
scrollToElementByText(getStringResource(R.string.onboarding_theme_picker_header))
|
||||||
assertAppItemsContainingText(
|
assertItemContainingTextExists(
|
||||||
chooseThemeHeader,
|
chooseThemeHeader,
|
||||||
chooseThemeText,
|
chooseThemeText,
|
||||||
darkThemeDescription,
|
darkThemeDescription,
|
||||||
lightThemeDescription,
|
lightThemeDescription,
|
||||||
)
|
)
|
||||||
assertAppItemsStateWithResourceId(
|
assertCheckedItemWithResIdExists(
|
||||||
darkThemeToggle(isDarkThemeChecked),
|
darkThemeToggle(isDarkThemeChecked),
|
||||||
lightThemeToggle(isLightThemeChecked),
|
lightThemeToggle(isLightThemeChecked),
|
||||||
automaticThemeToggle(isAutomaticThemeChecked),
|
automaticThemeToggle(isAutomaticThemeChecked),
|
||||||
)
|
)
|
||||||
assertAppItemsWithResourceIdAndDescription(automaticThemeDescription)
|
assertItemWithResIdAndDescriptionExists(automaticThemeDescription)
|
||||||
}
|
}
|
||||||
|
|
||||||
fun verifyToolbarPlacementCard(isBottomChecked: Boolean, isTopChecked: Boolean) {
|
fun verifyToolbarPlacementCard(isBottomChecked: Boolean, isTopChecked: Boolean) {
|
||||||
scrollToElementByText(getStringResource(R.string.onboarding_toolbar_placement_header_1))
|
scrollToElementByText(getStringResource(R.string.onboarding_toolbar_placement_header_1))
|
||||||
assertAppItemsContainingText(toolbarPlacementHeader, toolbarPlacementDescription)
|
assertItemContainingTextExists(toolbarPlacementHeader, toolbarPlacementDescription)
|
||||||
assertAppItemsStateWithResourceId(
|
assertCheckedItemWithResIdExists(
|
||||||
toolbarPlacementBottomRadioButton(isBottomChecked),
|
toolbarPlacementBottomRadioButton(isBottomChecked),
|
||||||
toolbarPlacementTopRadioButton(isTopChecked),
|
toolbarPlacementTopRadioButton(isTopChecked),
|
||||||
)
|
)
|
||||||
assertAppItemsWithResourceId(
|
assertItemWithResIdExists(
|
||||||
toolbarPlacementBottomImage,
|
toolbarPlacementBottomImage,
|
||||||
toolbarPlacementBottomTitle,
|
toolbarPlacementBottomTitle,
|
||||||
toolbarPlacementTopImage,
|
toolbarPlacementTopImage,
|
||||||
@ -123,14 +132,14 @@ class HomeScreenRobot {
|
|||||||
|
|
||||||
fun verifySignInToSyncCard() {
|
fun verifySignInToSyncCard() {
|
||||||
scrollToElementByText(getStringResource(R.string.onboarding_account_sign_in_header))
|
scrollToElementByText(getStringResource(R.string.onboarding_account_sign_in_header))
|
||||||
assertAppItemsContainingText(startSyncHeader, startSyncDescription)
|
assertItemContainingTextExists(startSyncHeader, startSyncDescription)
|
||||||
assertAppItemsWithResourceId(signInButton)
|
assertItemWithResIdExists(signInButton)
|
||||||
}
|
}
|
||||||
|
|
||||||
fun verifyPrivacyProtectionCard(isStandardChecked: Boolean, isStrictChecked: Boolean) {
|
fun verifyPrivacyProtectionCard(isStandardChecked: Boolean, isStrictChecked: Boolean) {
|
||||||
scrollToElementByText(getStringResource(R.string.onboarding_tracking_protection_header))
|
scrollToElementByText(getStringResource(R.string.onboarding_tracking_protection_header))
|
||||||
assertAppItemsContainingText(privacyProtectionHeader, privacyProtectionDescription)
|
assertItemContainingTextExists(privacyProtectionHeader, privacyProtectionDescription)
|
||||||
assertAppItemsStateWithResourceId(
|
assertCheckedItemWithResIdExists(
|
||||||
standardTrackingProtectionToggle(isStandardChecked),
|
standardTrackingProtectionToggle(isStandardChecked),
|
||||||
strictTrackingProtectionToggle(isStrictChecked),
|
strictTrackingProtectionToggle(isStrictChecked),
|
||||||
)
|
)
|
||||||
@ -138,31 +147,31 @@ class HomeScreenRobot {
|
|||||||
|
|
||||||
fun verifyPrivacyNoticeCard() {
|
fun verifyPrivacyNoticeCard() {
|
||||||
scrollToElementByText(getStringResource(R.string.onboarding_privacy_notice_header_1))
|
scrollToElementByText(getStringResource(R.string.onboarding_privacy_notice_header_1))
|
||||||
assertAppItemsContainingText(privacyNoticeHeader, privacyNoticeDescription)
|
assertItemContainingTextExists(privacyNoticeHeader, privacyNoticeDescription)
|
||||||
assertAppItemsWithResourceId(privacyNoticeButton)
|
assertItemWithResIdExists(privacyNoticeButton)
|
||||||
}
|
}
|
||||||
|
|
||||||
fun verifyStartBrowsingSection() {
|
fun verifyStartBrowsingSection() {
|
||||||
scrollToElementByText(getStringResource(R.string.onboarding_finish))
|
scrollToElementByText(getStringResource(R.string.onboarding_finish))
|
||||||
assertAppItemsWithResourceId(startBrowsingButton)
|
assertItemWithResIdExists(startBrowsingButton)
|
||||||
assertAppItemsContainingText(conclusionHeader)
|
assertItemContainingTextExists(conclusionHeader)
|
||||||
}
|
}
|
||||||
|
|
||||||
fun verifyNavigationToolbarItems(numberOfOpenTabs: String) {
|
fun verifyNavigationToolbarItems(numberOfOpenTabs: String) {
|
||||||
assertAppItemsWithResourceId(navigationToolbar, menuButton)
|
assertItemWithResIdExists(navigationToolbar, menuButton)
|
||||||
assertAppItemsWithResourceIdAndText(tabCounter(numberOfOpenTabs))
|
assertItemWithResIdAndTextExists(tabCounter(numberOfOpenTabs))
|
||||||
}
|
}
|
||||||
|
|
||||||
fun verifyHomePrivateBrowsingButton() = assertAppItemsWithResourceId(privateBrowsingButton)
|
fun verifyHomePrivateBrowsingButton() = assertItemWithResIdExists(privateBrowsingButton)
|
||||||
fun verifyHomeMenuButton() = assertAppItemsWithResourceId(menuButton)
|
fun verifyHomeMenuButton() = assertItemWithResIdExists(menuButton)
|
||||||
fun verifyTabButton() = assertTabButton()
|
fun verifyTabButton() = assertTabButton()
|
||||||
fun verifyCollectionsHeader() = assertCollectionsHeader()
|
fun verifyCollectionsHeader() = assertCollectionsHeader()
|
||||||
fun verifyNoCollectionsText() = assertNoCollectionsText()
|
fun verifyNoCollectionsText() = assertNoCollectionsText()
|
||||||
fun verifyHomeWordmark() = assertAppItemsWithResourceId(homepageWordmark)
|
fun verifyHomeWordmark() = assertItemWithResIdExists(homepageWordmark)
|
||||||
fun verifyHomeComponent() = assertHomeComponent()
|
fun verifyHomeComponent() = assertHomeComponent()
|
||||||
fun verifyDefaultSearchEngine(searchEngine: String) = verifySearchEngineIcon(searchEngine)
|
fun verifyDefaultSearchEngine(searchEngine: String) = verifySearchEngineIcon(searchEngine)
|
||||||
fun verifyTabCounter(numberOfOpenTabs: String) =
|
fun verifyTabCounter(numberOfOpenTabs: String) =
|
||||||
assertAppItemsWithResourceIdAndText(tabCounter(numberOfOpenTabs))
|
assertItemWithResIdAndTextExists(tabCounter(numberOfOpenTabs))
|
||||||
fun verifyKeyboardVisible() = assertKeyboardVisibility(isExpectedToBeVisible = true)
|
fun verifyKeyboardVisible() = assertKeyboardVisibility(isExpectedToBeVisible = true)
|
||||||
|
|
||||||
fun verifyWallpaperImageApplied(isEnabled: Boolean) {
|
fun verifyWallpaperImageApplied(isEnabled: Boolean) {
|
||||||
@ -184,11 +193,11 @@ class HomeScreenRobot {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// First Run elements
|
// First Run elements
|
||||||
fun verifyWelcomeHeader() = assertAppItemsContainingText(welcomeHeader)
|
fun verifyWelcomeHeader() = assertItemContainingTextExists(welcomeHeader)
|
||||||
fun verifyAccountsSignInButton() = assertAppItemsWithResourceId(signInButton)
|
fun verifyAccountsSignInButton() = assertItemWithResIdExists(signInButton)
|
||||||
fun verifyStartBrowsingButton() {
|
fun verifyStartBrowsingButton() {
|
||||||
scrollToElementByText(getStringResource(R.string.onboarding_finish))
|
scrollToElementByText(getStringResource(R.string.onboarding_finish))
|
||||||
assertAppItemsWithResourceId(startBrowsingButton)
|
assertItemWithResIdExists(startBrowsingButton)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Upgrading users onboarding dialog
|
// Upgrading users onboarding dialog
|
||||||
@ -1010,125 +1019,80 @@ private fun sponsoredShortcut(sponsoredShortcutTitle: String) =
|
|||||||
private fun storyByTopicItem(composeTestRule: ComposeTestRule, position: Int) =
|
private fun storyByTopicItem(composeTestRule: ComposeTestRule, position: Int) =
|
||||||
composeTestRule.onNodeWithTag("pocket.categories").onChildAt(position - 1)
|
composeTestRule.onNodeWithTag("pocket.categories").onChildAt(position - 1)
|
||||||
|
|
||||||
private fun appItemWithResourceId(resourceId: String) =
|
|
||||||
mDevice.findObject(UiSelector().resourceId(resourceId))
|
|
||||||
|
|
||||||
private fun appItemContainingText(itemText: String) =
|
|
||||||
mDevice.findObject(UiSelector().textContains(itemText))
|
|
||||||
|
|
||||||
private fun appItemStateWithResourceId(resourceId: String, state: Boolean) =
|
|
||||||
mDevice.findObject(UiSelector().resourceId(resourceId).checked(state))
|
|
||||||
|
|
||||||
private fun appItemWithResourceIdAndDescription(resourceId: String, description: String) =
|
|
||||||
mDevice.findObject(UiSelector().resourceId(resourceId).descriptionContains(description))
|
|
||||||
|
|
||||||
private fun appItemWithResourceIdAndText(resourceId: String, text: String) =
|
|
||||||
mDevice.findObject(UiSelector().resourceId(resourceId).text(text))
|
|
||||||
|
|
||||||
private fun assertAppItemsWithResourceId(vararg appItems: UiObject) {
|
|
||||||
for (appItem in appItems) {
|
|
||||||
assertTrue(appItem.waitForExists(waitingTime))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private fun assertAppItemsContainingText(vararg appItems: UiObject) {
|
|
||||||
for (appItem in appItems) {
|
|
||||||
assertTrue(appItem.waitForExists(waitingTime))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private fun assertAppItemsStateWithResourceId(vararg appItems: UiObject) {
|
|
||||||
for (appItem in appItems) {
|
|
||||||
assertTrue(appItem.waitForExists(waitingTime))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private fun assertAppItemsWithResourceIdAndDescription(vararg appItems: UiObject) {
|
|
||||||
for (appItem in appItems) {
|
|
||||||
assertTrue(appItem.waitForExists(waitingTime))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private fun assertAppItemsWithResourceIdAndText(vararg appItems: UiObject) {
|
|
||||||
for (appItem in appItems) {
|
|
||||||
assertTrue(appItem.waitForExists(waitingTime))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private val homeScreen =
|
private val homeScreen =
|
||||||
appItemWithResourceId("$packageName:id/homeLayout")
|
itemWithResId("$packageName:id/homeLayout")
|
||||||
private val privateBrowsingButton =
|
private val privateBrowsingButton =
|
||||||
appItemWithResourceId("$packageName:id/privateBrowsingButton")
|
itemWithResId("$packageName:id/privateBrowsingButton")
|
||||||
private val homepageWordmark =
|
private val homepageWordmark =
|
||||||
appItemWithResourceId("$packageName:id/wordmark")
|
itemWithResId("$packageName:id/wordmark")
|
||||||
private val welcomeHeader = appItemContainingText(getStringResource(R.string.onboarding_header_2))
|
private val welcomeHeader = itemContainingText(getStringResource(R.string.onboarding_header_2))
|
||||||
private val welcomeSubHeader =
|
private val welcomeSubHeader =
|
||||||
appItemContainingText(getStringResource(R.string.onboarding_message))
|
itemContainingText(getStringResource(R.string.onboarding_message))
|
||||||
private val chooseThemeHeader =
|
private val chooseThemeHeader =
|
||||||
appItemContainingText(getStringResource(R.string.onboarding_theme_picker_header))
|
itemContainingText(getStringResource(R.string.onboarding_theme_picker_header))
|
||||||
private val chooseThemeText =
|
private val chooseThemeText =
|
||||||
appItemContainingText(getStringResource(R.string.onboarding_theme_picker_description_2))
|
itemContainingText(getStringResource(R.string.onboarding_theme_picker_description_2))
|
||||||
private val darkThemeDescription =
|
private val darkThemeDescription =
|
||||||
appItemContainingText(getStringResource(R.string.onboarding_theme_dark_title))
|
itemContainingText(getStringResource(R.string.onboarding_theme_dark_title))
|
||||||
private val lightThemeDescription =
|
private val lightThemeDescription =
|
||||||
appItemContainingText(getStringResource(R.string.onboarding_theme_light_title))
|
itemContainingText(getStringResource(R.string.onboarding_theme_light_title))
|
||||||
private val automaticThemeDescription =
|
private val automaticThemeDescription =
|
||||||
appItemWithResourceIdAndDescription(
|
itemWithResIdAndDescription(
|
||||||
"$packageName:id/clickable_region_automatic",
|
"$packageName:id/clickable_region_automatic",
|
||||||
"${getStringResource(R.string.onboarding_theme_automatic_title)} ${getStringResource(R.string.onboarding_theme_automatic_summary)}",
|
"${getStringResource(R.string.onboarding_theme_automatic_title)} ${getStringResource(R.string.onboarding_theme_automatic_summary)}",
|
||||||
)
|
)
|
||||||
private fun darkThemeToggle(isChecked: Boolean) =
|
private fun darkThemeToggle(isChecked: Boolean) =
|
||||||
appItemStateWithResourceId("$packageName:id/theme_dark_radio_button", isChecked)
|
checkedItemWithResId("$packageName:id/theme_dark_radio_button", isChecked)
|
||||||
private fun lightThemeToggle(isChecked: Boolean) =
|
private fun lightThemeToggle(isChecked: Boolean) =
|
||||||
appItemStateWithResourceId("$packageName:id/theme_light_radio_button", isChecked)
|
checkedItemWithResId("$packageName:id/theme_light_radio_button", isChecked)
|
||||||
private fun automaticThemeToggle(isChecked: Boolean) =
|
private fun automaticThemeToggle(isChecked: Boolean) =
|
||||||
appItemStateWithResourceId("$packageName:id/theme_automatic_radio_button", isChecked)
|
checkedItemWithResId("$packageName:id/theme_automatic_radio_button", isChecked)
|
||||||
private val toolbarPlacementHeader =
|
private val toolbarPlacementHeader =
|
||||||
appItemContainingText(getStringResource(R.string.onboarding_toolbar_placement_header_1))
|
itemContainingText(getStringResource(R.string.onboarding_toolbar_placement_header_1))
|
||||||
private val toolbarPlacementDescription =
|
private val toolbarPlacementDescription =
|
||||||
appItemContainingText(getStringResource(R.string.onboarding_toolbar_placement_description))
|
itemContainingText(getStringResource(R.string.onboarding_toolbar_placement_description))
|
||||||
private fun toolbarPlacementBottomRadioButton(isChecked: Boolean) =
|
private fun toolbarPlacementBottomRadioButton(isChecked: Boolean) =
|
||||||
appItemStateWithResourceId("$packageName:id/toolbar_bottom_radio_button", isChecked)
|
checkedItemWithResId("$packageName:id/toolbar_bottom_radio_button", isChecked)
|
||||||
private fun toolbarPlacementTopRadioButton(isChecked: Boolean) =
|
private fun toolbarPlacementTopRadioButton(isChecked: Boolean) =
|
||||||
appItemStateWithResourceId("$packageName:id/toolbar_top_radio_button", isChecked)
|
checkedItemWithResId("$packageName:id/toolbar_top_radio_button", isChecked)
|
||||||
private val toolbarPlacementBottomImage =
|
private val toolbarPlacementBottomImage =
|
||||||
appItemWithResourceId("$packageName:id/toolbar_bottom_image")
|
itemWithResId("$packageName:id/toolbar_bottom_image")
|
||||||
private val toolbarPlacementBottomTitle =
|
private val toolbarPlacementBottomTitle =
|
||||||
appItemWithResourceId("$packageName:id/toolbar_bottom_title")
|
itemWithResId("$packageName:id/toolbar_bottom_title")
|
||||||
private val toolbarPlacementTopTitle =
|
private val toolbarPlacementTopTitle =
|
||||||
appItemWithResourceId("$packageName:id/toolbar_top_title")
|
itemWithResId("$packageName:id/toolbar_top_title")
|
||||||
private val toolbarPlacementTopImage =
|
private val toolbarPlacementTopImage =
|
||||||
appItemWithResourceId("$packageName:id/toolbar_top_image")
|
itemWithResId("$packageName:id/toolbar_top_image")
|
||||||
private val startSyncHeader =
|
private val startSyncHeader =
|
||||||
appItemContainingText(getStringResource(R.string.onboarding_account_sign_in_header))
|
itemContainingText(getStringResource(R.string.onboarding_account_sign_in_header))
|
||||||
private val startSyncDescription =
|
private val startSyncDescription =
|
||||||
appItemContainingText(getStringResource(R.string.onboarding_manual_sign_in_description))
|
itemContainingText(getStringResource(R.string.onboarding_manual_sign_in_description))
|
||||||
private val signInButton =
|
private val signInButton =
|
||||||
appItemWithResourceId("$packageName:id/fxa_sign_in_button")
|
itemWithResId("$packageName:id/fxa_sign_in_button")
|
||||||
private val privacyProtectionHeader =
|
private val privacyProtectionHeader =
|
||||||
appItemContainingText(getStringResource(R.string.onboarding_tracking_protection_header))
|
itemContainingText(getStringResource(R.string.onboarding_tracking_protection_header))
|
||||||
private val privacyProtectionDescription =
|
private val privacyProtectionDescription =
|
||||||
appItemContainingText(getStringResource(R.string.onboarding_tracking_protection_description))
|
itemContainingText(getStringResource(R.string.onboarding_tracking_protection_description))
|
||||||
private fun standardTrackingProtectionToggle(isChecked: Boolean) =
|
private fun standardTrackingProtectionToggle(isChecked: Boolean) =
|
||||||
appItemStateWithResourceId("$packageName:id/tracking_protection_standard_option", isChecked)
|
checkedItemWithResId("$packageName:id/tracking_protection_standard_option", isChecked)
|
||||||
private fun strictTrackingProtectionToggle(isChecked: Boolean) =
|
private fun strictTrackingProtectionToggle(isChecked: Boolean) =
|
||||||
appItemStateWithResourceId("$packageName:id/tracking_protection_strict_default", isChecked)
|
checkedItemWithResId("$packageName:id/tracking_protection_strict_default", isChecked)
|
||||||
private val privacyNoticeHeader =
|
private val privacyNoticeHeader =
|
||||||
appItemContainingText(getStringResource(R.string.onboarding_privacy_notice_header_1))
|
itemContainingText(getStringResource(R.string.onboarding_privacy_notice_header_1))
|
||||||
private val privacyNoticeDescription =
|
private val privacyNoticeDescription =
|
||||||
appItemContainingText(getStringResource(R.string.onboarding_privacy_notice_description))
|
itemContainingText(getStringResource(R.string.onboarding_privacy_notice_description))
|
||||||
private val privacyNoticeButton =
|
private val privacyNoticeButton =
|
||||||
appItemWithResourceId("$packageName:id/read_button")
|
itemWithResId("$packageName:id/read_button")
|
||||||
private val startBrowsingButton =
|
private val startBrowsingButton =
|
||||||
appItemWithResourceId("$packageName:id/finish_button")
|
itemWithResId("$packageName:id/finish_button")
|
||||||
private val conclusionHeader =
|
private val conclusionHeader =
|
||||||
appItemContainingText(getStringResource(R.string.onboarding_conclusion_header))
|
itemContainingText(getStringResource(R.string.onboarding_conclusion_header))
|
||||||
private val navigationToolbar =
|
private val navigationToolbar =
|
||||||
appItemWithResourceId("$packageName:id/toolbar")
|
itemWithResId("$packageName:id/toolbar")
|
||||||
private val menuButton =
|
private val menuButton =
|
||||||
appItemWithResourceId("$packageName:id/menuButton")
|
itemWithResId("$packageName:id/menuButton")
|
||||||
private fun tabCounter(numberOfOpenTabs: String) =
|
private fun tabCounter(numberOfOpenTabs: String) =
|
||||||
appItemWithResourceIdAndText("$packageName:id/counter_text", numberOfOpenTabs)
|
itemWithResIdAndText("$packageName:id/counter_text", numberOfOpenTabs)
|
||||||
|
|
||||||
val deleteFromHistory =
|
val deleteFromHistory =
|
||||||
onView(
|
onView(
|
||||||
|
Loading…
Reference in New Issue
Block a user