Bug 1881028 - Add logs to SettingsSubMenuEnhancedTrackingProtectionRobot

fenix/125.0
AndiAJ 3 months ago committed by mergify[bot]
parent 7540671d28
commit b260a91210

@ -6,6 +6,7 @@ package org.mozilla.fenix.ui
import androidx.core.net.toUri import androidx.core.net.toUri
import androidx.test.espresso.Espresso.pressBack import androidx.test.espresso.Espresso.pressBack
import org.junit.Ignore
import org.junit.Rule import org.junit.Rule
import org.junit.Test import org.junit.Test
import org.mozilla.fenix.customannotations.SmokeTest import org.mozilla.fenix.customannotations.SmokeTest
@ -182,6 +183,7 @@ class EnhancedTrackingProtectionTest : TestSetup() {
// TestRail link: https://testrail.stage.mozaws.net/index.php?/cases/view/339713 // TestRail link: https://testrail.stage.mozaws.net/index.php?/cases/view/339713
// Tests removing TP exceptions individually or all at once // Tests removing TP exceptions individually or all at once
@Ignore("Failing, see: https://bugzilla.mozilla.org/show_bug.cgi?id=1865781")
@Test @Test
fun clearWebsitesFromTPExceptionListTest() { fun clearWebsitesFromTPExceptionListTest() {
val firstPage = getGenericAsset(mockWebServer, 1) val firstPage = getGenericAsset(mockWebServer, 1)

@ -4,10 +4,10 @@
package org.mozilla.fenix.ui.robots package org.mozilla.fenix.ui.robots
import android.util.Log
import androidx.recyclerview.widget.RecyclerView import androidx.recyclerview.widget.RecyclerView
import androidx.test.espresso.Espresso.onView import androidx.test.espresso.Espresso.onView
import androidx.test.espresso.Espresso.pressBack import androidx.test.espresso.Espresso.pressBack
import androidx.test.espresso.ViewInteraction
import androidx.test.espresso.assertion.ViewAssertions.matches import androidx.test.espresso.assertion.ViewAssertions.matches
import androidx.test.espresso.contrib.RecyclerViewActions import androidx.test.espresso.contrib.RecyclerViewActions
import androidx.test.espresso.matcher.ViewMatchers.Visibility import androidx.test.espresso.matcher.ViewMatchers.Visibility
@ -25,6 +25,7 @@ import androidx.test.uiautomator.By
import androidx.test.uiautomator.Until import androidx.test.uiautomator.Until
import org.hamcrest.CoreMatchers.allOf import org.hamcrest.CoreMatchers.allOf
import org.mozilla.fenix.R import org.mozilla.fenix.R
import org.mozilla.fenix.helpers.Constants.TAG
import org.mozilla.fenix.helpers.TestAssetHelper.waitingTime import org.mozilla.fenix.helpers.TestAssetHelper.waitingTime
import org.mozilla.fenix.helpers.TestHelper.appName import org.mozilla.fenix.helpers.TestHelper.appName
import org.mozilla.fenix.helpers.TestHelper.mDevice import org.mozilla.fenix.helpers.TestHelper.mDevice
@ -40,13 +41,21 @@ const val globalPrivacyControlSwitchText = "Tell websites not to share & sell da
*/ */
class SettingsSubMenuEnhancedTrackingProtectionRobot { class SettingsSubMenuEnhancedTrackingProtectionRobot {
fun verifyEnhancedTrackingProtectionSummary() = fun verifyEnhancedTrackingProtectionSummary() {
Log.i(TAG, "verifyEnhancedTrackingProtectionSummary: Trying to verify that the ETP summary is visible")
onView(withText("$appName protects you from many of the most common trackers that follow what you do online.")) onView(withText("$appName protects you from many of the most common trackers that follow what you do online."))
.check(matches(withEffectiveVisibility(Visibility.VISIBLE))) .check(matches(withEffectiveVisibility(Visibility.VISIBLE)))
Log.i(TAG, "verifyEnhancedTrackingProtectionSummary: Verified that the ETP summary is visible")
}
fun verifyLearnMoreText() = onView(withText("Learn more")).check(matches(isDisplayed())) fun verifyLearnMoreText() {
Log.i(TAG, "verifyLearnMoreText: Trying to verify that the learn more link is visible")
onView(withText("Learn more")).check(matches(isDisplayed()))
Log.i(TAG, "verifyLearnMoreText: Verified that the learn more link is visible")
}
fun verifyEnhancedTrackingProtectionTextWithSwitchWidget() = fun verifyEnhancedTrackingProtectionTextWithSwitchWidget() {
Log.i(TAG, "verifyEnhancedTrackingProtectionTextWithSwitchWidget: Trying to verify that the ETP toggle is visible")
onView( onView(
allOf( allOf(
withParentIndex(1), withParentIndex(1),
@ -54,19 +63,26 @@ class SettingsSubMenuEnhancedTrackingProtectionRobot {
), ),
) )
.check(matches(withEffectiveVisibility(Visibility.VISIBLE))) .check(matches(withEffectiveVisibility(Visibility.VISIBLE)))
Log.i(TAG, "verifyEnhancedTrackingProtectionTextWithSwitchWidget: Verified that the ETP toggle is visible")
}
fun verifyEnhancedTrackingProtectionOptionsEnabled(enabled: Boolean = true) { fun verifyEnhancedTrackingProtectionOptionsEnabled(enabled: Boolean = true) {
Log.i(TAG, "verifyEnhancedTrackingProtectionOptionsEnabled: Trying to verify that the \"Standard\" ETP option is enabled $enabled")
onView(withText("Standard (default)")) onView(withText("Standard (default)"))
.check(matches(isEnabled(enabled))) .check(matches(isEnabled(enabled)))
Log.i(TAG, "verifyEnhancedTrackingProtectionOptionsEnabled: Verified that the \"Standard\" ETP option is enabled $enabled")
Log.i(TAG, "verifyEnhancedTrackingProtectionOptionsEnabled: Trying to verify that the \"Strict\" ETP option is enabled $enabled")
onView(withText("Strict")) onView(withText("Strict"))
.check(matches(isEnabled(enabled))) .check(matches(isEnabled(enabled)))
Log.i(TAG, "verifyEnhancedTrackingProtectionOptionsEnabled: Verified that the \"Strict\" ETP option is enabled $enabled")
Log.i(TAG, "verifyEnhancedTrackingProtectionOptionsEnabled: Trying to verify that the \"Custom\" ETP option is enabled $enabled")
onView(withText("Custom")) onView(withText("Custom"))
.check(matches(isEnabled(enabled))) .check(matches(isEnabled(enabled)))
Log.i(TAG, "verifyEnhancedTrackingProtectionOptionsEnabled: Verified that the \"Custom\" ETP option is enabled $enabled")
} }
fun verifyTrackingProtectionSwitchEnabled() = fun verifyTrackingProtectionSwitchEnabled() {
Log.i(TAG, "verifyTrackingProtectionSwitchEnabled: Trying to verify that the ETP toggle is checked")
onView(withResourceName("checkbox")).check( onView(withResourceName("checkbox")).check(
matches( matches(
isChecked( isChecked(
@ -74,98 +90,163 @@ class SettingsSubMenuEnhancedTrackingProtectionRobot {
), ),
), ),
) )
Log.i(TAG, "verifyTrackingProtectionSwitchEnabled: Verified that the ETP toggle is checked")
}
fun switchEnhancedTrackingProtectionToggle() {
Log.i(TAG, "switchEnhancedTrackingProtectionToggle: Trying to click the ETP toggle")
onView(
allOf(
withText("Enhanced Tracking Protection"),
hasSibling(withResourceName("checkbox")),
),
).click()
Log.i(TAG, "switchEnhancedTrackingProtectionToggle: Clicked the ETP toggle")
}
fun switchEnhancedTrackingProtectionToggle() = onView( fun scrollToGCPSettings() {
allOf( Log.i(TAG, "scrollToGCPSettings: Trying to perform scroll to the $globalPrivacyControlSwitchText option")
withText("Enhanced Tracking Protection"), onView(withId(R.id.recycler_view)).perform(
hasSibling(withResourceName("checkbox")), RecyclerViewActions.scrollTo<RecyclerView.ViewHolder>(
), hasDescendant(withText(globalPrivacyControlSwitchText)),
).click() ),
)
fun scrollToGCPSettings(): ViewInteraction = onView(withId(R.id.recycler_view)).perform( Log.i(TAG, "scrollToGCPSettings: Performed scroll to the $globalPrivacyControlSwitchText option")
RecyclerViewActions.scrollTo<RecyclerView.ViewHolder>( }
hasDescendant(withText(globalPrivacyControlSwitchText)),
),
)
fun verifyGPCTextWithSwitchWidget() { fun verifyGPCTextWithSwitchWidget() {
Log.i(TAG, "verifyGPCTextWithSwitchWidget: Trying to verify that the $globalPrivacyControlSwitchText option is visible")
onView( onView(
allOf( allOf(
withChild(withText(globalPrivacyControlSwitchText)), withChild(withText(globalPrivacyControlSwitchText)),
), ),
).check(matches(withEffectiveVisibility(Visibility.VISIBLE))) ).check(matches(withEffectiveVisibility(Visibility.VISIBLE)))
Log.i(TAG, "verifyGPCTextWithSwitchWidget: Verified that the $globalPrivacyControlSwitchText option is visible")
} }
fun verifyGPCSwitchEnabled(enabled: Boolean) { fun verifyGPCSwitchEnabled(enabled: Boolean) {
Log.i(TAG, "verifyGPCSwitchEnabled: Trying to verify that the $globalPrivacyControlSwitchText option is checked: $enabled")
onView( onView(
allOf( allOf(
withChild(withText(globalPrivacyControlSwitchText)), withChild(withText(globalPrivacyControlSwitchText)),
), ),
).check(matches(isChecked(enabled))) ).check(matches(isChecked(enabled)))
Log.i(TAG, "verifyGPCSwitchEnabled: Verified that the $globalPrivacyControlSwitchText option is checked: $enabled")
} }
fun switchGPCToggle() = onView( fun switchGPCToggle() {
allOf( Log.i(TAG, "switchGPCToggle: Trying to click the $globalPrivacyControlSwitchText option toggle")
withChild(withText(globalPrivacyControlSwitchText)), onView(
), allOf(
).click() withChild(withText(globalPrivacyControlSwitchText)),
),
).click()
Log.i(TAG, "switchGPCToggle: Clicked the $globalPrivacyControlSwitchText option toggle")
}
fun verifyStandardOptionDescription() { fun verifyStandardOptionDescription() {
Log.i(TAG, "verifyStandardOptionDescription: Trying to verify that the \"Standard\" ETP option summary is displayed")
onView(withText(R.string.preference_enhanced_tracking_protection_standard_description_5)) onView(withText(R.string.preference_enhanced_tracking_protection_standard_description_5))
.check(matches(isDisplayed())) .check(matches(isDisplayed()))
Log.i(TAG, "verifyStandardOptionDescription: Verified that the \"Standard\" ETP option summary is displayed")
Log.i(TAG, "verifyStandardOptionDescription: Trying to verify that the \"Standard\" ETP option info button is displayed")
onView(withContentDescription(R.string.preference_enhanced_tracking_protection_standard_info_button)) onView(withContentDescription(R.string.preference_enhanced_tracking_protection_standard_info_button))
.check(matches(isDisplayed())) .check(matches(isDisplayed()))
Log.i(TAG, "verifyStandardOptionDescription: Verify that the \"Standard\" ETP option info button is displayed")
} }
fun verifyStrictOptionDescription() { fun verifyStrictOptionDescription() {
Log.i(TAG, "verifyStrictOptionDescription: Trying to verify that the \"Strict\" ETP option summary is displayed")
onView(withText(R.string.preference_enhanced_tracking_protection_strict_description_4)) onView(withText(R.string.preference_enhanced_tracking_protection_strict_description_4))
.check(matches(isDisplayed())) .check(matches(isDisplayed()))
Log.i(TAG, "verifyStrictOptionDescription: Verified that the \"Strict\" ETP option summary is displayed")
Log.i(TAG, "verifyStrictOptionDescription: Trying to verify that the \"Strict\" ETP option info button is displayed")
onView(withContentDescription(R.string.preference_enhanced_tracking_protection_strict_info_button)) onView(withContentDescription(R.string.preference_enhanced_tracking_protection_strict_info_button))
.check(matches(isDisplayed())) .check(matches(isDisplayed()))
Log.i(TAG, "verifyStrictOptionDescription: Verified that the \"Strict\" ETP option info button is displayed")
} }
fun verifyCustomTrackingProtectionSettings() { fun verifyCustomTrackingProtectionSettings() {
scrollToElementByText("Redirect Trackers") scrollToElementByText("Redirect Trackers")
Log.i(TAG, "verifyCustomTrackingProtectionSettings: Trying to verify that the \"Custom\" ETP option summary is displayed")
onView(withText(R.string.preference_enhanced_tracking_protection_custom_description_2)) onView(withText(R.string.preference_enhanced_tracking_protection_custom_description_2))
.check(matches(isDisplayed())) .check(matches(isDisplayed()))
Log.i(TAG, "verifyCustomTrackingProtectionSettings: Verified that the \"Custom\" ETP option summary is displayed")
Log.i(TAG, "verifyCustomTrackingProtectionSettings: Trying to verify that the \"Custom\" ETP option info button is displayed")
onView(withContentDescription(R.string.preference_enhanced_tracking_protection_custom_info_button)) onView(withContentDescription(R.string.preference_enhanced_tracking_protection_custom_info_button))
.check(matches(isDisplayed())) .check(matches(isDisplayed()))
Log.i(TAG, "verifyCustomTrackingProtectionSettings: Verified that the \"Custom\" ETP option info button is displayed")
Log.i(TAG, "verifyCustomTrackingProtectionSettings: Trying to verify that the \"Cookies\" check box is displayed")
cookiesCheckbox().check(matches(isDisplayed())) cookiesCheckbox().check(matches(isDisplayed()))
Log.i(TAG, "verifyCustomTrackingProtectionSettings: Verified that the \"Cookies\" check box is displayed")
Log.i(TAG, "verifyCustomTrackingProtectionSettings: Trying to verify that the \"Cookies\" drop down is displayed")
cookiesDropDownMenuDefault().check(matches(isDisplayed())) cookiesDropDownMenuDefault().check(matches(isDisplayed()))
Log.i(TAG, "verifyCustomTrackingProtectionSettings: Verified that the \"Cookies\" drop down is displayed")
Log.i(TAG, "verifyCustomTrackingProtectionSettings: Trying to verify that the \"Tracking content\" check box is displayed")
trackingContentCheckbox().check(matches(isDisplayed())) trackingContentCheckbox().check(matches(isDisplayed()))
Log.i(TAG, "verifyCustomTrackingProtectionSettings: Verified that the \"Tracking content\" check box is displayed")
Log.i(TAG, "verifyCustomTrackingProtectionSettings: Trying to verify that the \"Tracking content\" drop down is displayed")
trackingcontentDropDownDefault().check(matches(isDisplayed())) trackingcontentDropDownDefault().check(matches(isDisplayed()))
Log.i(TAG, "verifyCustomTrackingProtectionSettings: Verified that the \"Tracking content\" drop down is displayed")
Log.i(TAG, "verifyCustomTrackingProtectionSettings: Trying to verify that the \"Cryptominers\" check box is displayed")
cryptominersCheckbox().check(matches(isDisplayed())) cryptominersCheckbox().check(matches(isDisplayed()))
Log.i(TAG, "verifyCustomTrackingProtectionSettings: Verified that the \"Cryptominers\" check box is displayed")
Log.i(TAG, "verifyCustomTrackingProtectionSettings: Trying to verify that the \"Fingerprinters\" check box is displayed")
fingerprintersCheckbox().check(matches(isDisplayed())) fingerprintersCheckbox().check(matches(isDisplayed()))
Log.i(TAG, "verifyCustomTrackingProtectionSettings: Verified that the \"Fingerprinters\" check box is displayed")
Log.i(TAG, "verifyCustomTrackingProtectionSettings: Trying to verify that the \"Redirect trackers\" check box is displayed")
redirectTrackersCheckbox().check(matches(isDisplayed())) redirectTrackersCheckbox().check(matches(isDisplayed()))
Log.i(TAG, "verifyCustomTrackingProtectionSettings: Verified that the \"Redirect trackers\" check box is displayed")
} }
fun verifyWhatsBlockedByStandardETPInfo() { fun verifyWhatsBlockedByStandardETPInfo() {
Log.i(TAG, "verifyWhatsBlockedByStandardETPInfo: Trying to click the \"Standard\" ETP option info button")
onView(withContentDescription(R.string.preference_enhanced_tracking_protection_standard_info_button)).click() onView(withContentDescription(R.string.preference_enhanced_tracking_protection_standard_info_button)).click()
Log.i(TAG, "verifyWhatsBlockedByStandardETPInfo: Clicked the \"Standard\" ETP option info button")
blockedByStandardETPInfo() blockedByStandardETPInfo()
} }
fun verifyWhatsBlockedByStrictETPInfo() { fun verifyWhatsBlockedByStrictETPInfo() {
Log.i(TAG, "verifyWhatsBlockedByStrictETPInfo: Trying to click the \"Strict\" ETP option info button")
onView(withContentDescription(R.string.preference_enhanced_tracking_protection_strict_info_button)).click() onView(withContentDescription(R.string.preference_enhanced_tracking_protection_strict_info_button)).click()
Log.i(TAG, "verifyWhatsBlockedByStrictETPInfo: Clicked the \"Strict\" ETP option info button")
// Repeating the info as in the standard option, with one extra point. // Repeating the info as in the standard option, with one extra point.
blockedByStandardETPInfo() blockedByStandardETPInfo()
Log.i(TAG, "verifyWhatsBlockedByStrictETPInfo: Trying to verify that the \"Tracking Content\" title is displayed")
onView(withText("Tracking Content")).check(matches(isDisplayed())) onView(withText("Tracking Content")).check(matches(isDisplayed()))
Log.i(TAG, "verifyWhatsBlockedByStrictETPInfo: Verified that the \"Tracking Content\" title is displayed")
Log.i(TAG, "verifyWhatsBlockedByStrictETPInfo: Trying to verify that the \"Tracking Content\" summary is displayed")
onView(withText("Stops outside ads, videos, and other content from loading that contains tracking code. May affect some website functionality.")).check(matches(isDisplayed())) onView(withText("Stops outside ads, videos, and other content from loading that contains tracking code. May affect some website functionality.")).check(matches(isDisplayed()))
Log.i(TAG, "verifyWhatsBlockedByStrictETPInfo: Verified that the \"Tracking Content\" summary is displayed")
} }
fun verifyWhatsBlockedByCustomETPInfo() { fun verifyWhatsBlockedByCustomETPInfo() {
Log.i(TAG, "verifyWhatsBlockedByCustomETPInfo: Trying to click the \"Custom\" ETP option info button")
onView(withContentDescription(R.string.preference_enhanced_tracking_protection_custom_info_button)).click() onView(withContentDescription(R.string.preference_enhanced_tracking_protection_custom_info_button)).click()
Log.i(TAG, "verifyWhatsBlockedByCustomETPInfo: Clicked the \"Custom\" ETP option info button")
// Repeating the info as in the standard option, with one extra point. // Repeating the info as in the standard option, with one extra point.
blockedByStandardETPInfo() blockedByStandardETPInfo()
Log.i(TAG, "verifyWhatsBlockedByCustomETPInfo: Trying to verify that the \"Tracking Content\" title is displayed")
onView(withText("Tracking Content")).check(matches(isDisplayed())) onView(withText("Tracking Content")).check(matches(isDisplayed()))
Log.i(TAG, "verifyWhatsBlockedByCustomETPInfo: Verified that the \"Tracking Content\" title is displayed")
Log.i(TAG, "verifyWhatsBlockedByCustomETPInfo: Trying to verify that the \"Tracking Content\" summary is displayed")
onView(withText("Stops outside ads, videos, and other content from loading that contains tracking code. May affect some website functionality.")).check(matches(isDisplayed())) onView(withText("Stops outside ads, videos, and other content from loading that contains tracking code. May affect some website functionality.")).check(matches(isDisplayed()))
Log.i(TAG, "verifyWhatsBlockedByCustomETPInfo: Verified that the \"Tracking Content\" summary is displayed")
} }
fun selectTrackingProtectionOption(option: String) = onView(withText(option)).click() fun selectTrackingProtectionOption(option: String) {
Log.i(TAG, "selectTrackingProtectionOption: Trying to click the $option ETP option")
onView(withText(option)).click()
Log.i(TAG, "selectTrackingProtectionOption: Clicked the $option ETP option")
}
fun verifyEnhancedTrackingProtectionLevelSelected(option: String, checked: Boolean) { fun verifyEnhancedTrackingProtectionLevelSelected(option: String, checked: Boolean) {
Log.i(TAG, "verifyEnhancedTrackingProtectionLevelSelected: Waiting for $waitingTime ms until finding the \"Enhanced Tracking Protection\" toolbar")
mDevice.wait( mDevice.wait(
Until.findObject(By.text("Enhanced Tracking Protection")), Until.findObject(By.text("Enhanced Tracking Protection")),
waitingTime, waitingTime,
) )
Log.i(TAG, "verifyEnhancedTrackingProtectionLevelSelected: Waited for $waitingTime ms until the \"Enhanced Tracking Protection\" toolbar was found")
Log.i(TAG, "verifyEnhancedTrackingProtectionLevelSelected: Trying to verify that the $option ETP option is checked: $checked")
onView(withText(option)) onView(withText(option))
.check( .check(
matches( matches(
@ -177,21 +258,28 @@ class SettingsSubMenuEnhancedTrackingProtectionRobot {
), ),
), ),
) )
Log.i(TAG, "verifyEnhancedTrackingProtectionLevelSelected: Verified that the $option ETP option is checked: $checked")
} }
class Transition { class Transition {
fun goBackToHomeScreen(interact: HomeScreenRobot.() -> Unit): HomeScreenRobot.Transition { fun goBackToHomeScreen(interact: HomeScreenRobot.() -> Unit): HomeScreenRobot.Transition {
// To settings // To settings
Log.i(TAG, "goBackToHomeScreen: Trying to click the navigate up toolbar button")
goBackButton().click() goBackButton().click()
Log.i(TAG, "goBackToHomeScreen: Clicked the navigate up toolbar button")
// To HomeScreen // To HomeScreen
Log.i(TAG, "goBackToHomeScreen: Trying to perform press back action")
pressBack() pressBack()
Log.i(TAG, "goBackToHomeScreen: Performed press back action")
HomeScreenRobot().interact() HomeScreenRobot().interact()
return HomeScreenRobot.Transition() return HomeScreenRobot.Transition()
} }
fun goBack(interact: SettingsRobot.() -> Unit): SettingsRobot.Transition { fun goBack(interact: SettingsRobot.() -> Unit): SettingsRobot.Transition {
Log.i(TAG, "goBack: Trying to click the navigate up toolbar button")
goBackButton().click() goBackButton().click()
Log.i(TAG, "goBack: Clicked the navigate up toolbar button")
SettingsRobot().interact() SettingsRobot().interact()
return SettingsRobot.Transition() return SettingsRobot.Transition()
@ -200,13 +288,16 @@ class SettingsSubMenuEnhancedTrackingProtectionRobot {
fun openExceptions( fun openExceptions(
interact: SettingsSubMenuEnhancedTrackingProtectionExceptionsRobot.() -> Unit, interact: SettingsSubMenuEnhancedTrackingProtectionExceptionsRobot.() -> Unit,
): SettingsSubMenuEnhancedTrackingProtectionExceptionsRobot.Transition { ): SettingsSubMenuEnhancedTrackingProtectionExceptionsRobot.Transition {
Log.i(TAG, "openExceptions: Trying to perform scroll to the \"Exceptions\" option")
onView(withId(R.id.recycler_view)).perform( onView(withId(R.id.recycler_view)).perform(
RecyclerViewActions.scrollTo<RecyclerView.ViewHolder>( RecyclerViewActions.scrollTo<RecyclerView.ViewHolder>(
hasDescendant(withText("Exceptions")), hasDescendant(withText("Exceptions")),
), ),
) )
Log.i(TAG, "openExceptions: Performed scroll to the \"Exceptions\" option")
Log.i(TAG, "openExceptions: Trying to click the \"Exceptions\" option")
openExceptions().click() openExceptions().click()
Log.i(TAG, "openExceptions: Clicked the \"Exceptions\" option")
SettingsSubMenuEnhancedTrackingProtectionExceptionsRobot().interact() SettingsSubMenuEnhancedTrackingProtectionExceptionsRobot().interact()
return SettingsSubMenuEnhancedTrackingProtectionExceptionsRobot.Transition() return SettingsSubMenuEnhancedTrackingProtectionExceptionsRobot.Transition()
@ -240,14 +331,34 @@ private fun fingerprintersCheckbox() = onView(withText("Fingerprinters"))
private fun redirectTrackersCheckbox() = onView(withText("Redirect Trackers")) private fun redirectTrackersCheckbox() = onView(withText("Redirect Trackers"))
private fun blockedByStandardETPInfo() { private fun blockedByStandardETPInfo() {
Log.i(TAG, "blockedByStandardETPInfo: Trying to verify that the \"Social Media Trackers\" title is displayed")
onView(withText("Social Media Trackers")).check(matches(isDisplayed())) onView(withText("Social Media Trackers")).check(matches(isDisplayed()))
Log.i(TAG, "blockedByStandardETPInfo: Verified that the \"Social Media Trackers\" title is displayed")
Log.i(TAG, "blockedByStandardETPInfo: Trying to verify that the \"Social Media Trackers\" summary is displayed")
onView(withText("Limits the ability of social networks to track your browsing activity around the web.")).check(matches(isDisplayed())) onView(withText("Limits the ability of social networks to track your browsing activity around the web.")).check(matches(isDisplayed()))
Log.i(TAG, "blockedByStandardETPInfo: Verified that the \"Social Media Trackers\" summary is displayed")
Log.i(TAG, "blockedByStandardETPInfo: Trying to verify that the \"Cross-Site Cookies\" title is displayed")
onView(withText("Cross-Site Cookies")).check(matches(isDisplayed())) onView(withText("Cross-Site Cookies")).check(matches(isDisplayed()))
Log.i(TAG, "blockedByStandardETPInfo: Verified that the \"Cross-Site Cookies\" title is displayed")
Log.i(TAG, "blockedByStandardETPInfo: Trying to verify that the \"Cross-Site Cookies\" summary is displayed")
onView(withText("Total Cookie Protection isolates cookies to the site youre on so trackers like ad networks cant use them to follow you across sites.")).check(matches(isDisplayed())) onView(withText("Total Cookie Protection isolates cookies to the site youre on so trackers like ad networks cant use them to follow you across sites.")).check(matches(isDisplayed()))
Log.i(TAG, "blockedByStandardETPInfo: Verified that the \"Cross-Site Cookies\" summary is displayed")
Log.i(TAG, "blockedByStandardETPInfo: Trying to verify that the \"Cryptominers\" title is displayed")
onView(withText("Cryptominers")).check(matches(isDisplayed())) onView(withText("Cryptominers")).check(matches(isDisplayed()))
Log.i(TAG, "blockedByStandardETPInfo: Verified that the \"Cryptominers\" title is displayed")
Log.i(TAG, "blockedByStandardETPInfo: Trying to verify that the \"Cryptominers\" summary is displayed")
onView(withText("Prevents malicious scripts gaining access to your device to mine digital currency.")).check(matches(isDisplayed())) onView(withText("Prevents malicious scripts gaining access to your device to mine digital currency.")).check(matches(isDisplayed()))
Log.i(TAG, "blockedByStandardETPInfo: Verified that the \"Cryptominers\" summary is displayed")
Log.i(TAG, "blockedByStandardETPInfo: Trying to verify that the \"Fingerprinters\" title is displayed")
onView(withText("Fingerprinters")).check(matches(isDisplayed())) onView(withText("Fingerprinters")).check(matches(isDisplayed()))
Log.i(TAG, "blockedByStandardETPInfo: Verified that the \"Fingerprinters\" title is displayed")
Log.i(TAG, "blockedByStandardETPInfo: Trying to verify that the \"Fingerprinters\" summary is displayed")
onView(withText("Stops uniquely identifiable data from being collected about your device that can be used for tracking purposes.")).check(matches(isDisplayed())) onView(withText("Stops uniquely identifiable data from being collected about your device that can be used for tracking purposes.")).check(matches(isDisplayed()))
Log.i(TAG, "blockedByStandardETPInfo: Verified that the \"Fingerprinters\" summary is displayed")
Log.i(TAG, "blockedByStandardETPInfo: Trying to verify that the \"Redirect Trackers\" title is displayed")
onView(withText("Redirect Trackers")).check(matches(isDisplayed())) onView(withText("Redirect Trackers")).check(matches(isDisplayed()))
Log.i(TAG, "blockedByStandardETPInfo: Verified that the \"Redirect Trackers\" title is displayed")
Log.i(TAG, "blockedByStandardETPInfo: Trying to verify that the \"Redirect Trackers\" summary is displayed")
onView(withText("Clears cookies set by redirects to known tracking websites.")).check(matches(isDisplayed())) onView(withText("Clears cookies set by redirects to known tracking websites.")).check(matches(isDisplayed()))
Log.i(TAG, "blockedByStandardETPInfo: Verified that the \"Redirect Trackers\" summary is displayed")
} }

Loading…
Cancel
Save