summaryrefslogtreecommitdiffstats
path: root/browser/components/preferences/tests/browser_search_subdialogs_within_preferences_4.js
diff options
context:
space:
mode:
Diffstat (limited to 'browser/components/preferences/tests/browser_search_subdialogs_within_preferences_4.js')
-rw-r--r--browser/components/preferences/tests/browser_search_subdialogs_within_preferences_4.js39
1 files changed, 39 insertions, 0 deletions
diff --git a/browser/components/preferences/tests/browser_search_subdialogs_within_preferences_4.js b/browser/components/preferences/tests/browser_search_subdialogs_within_preferences_4.js
new file mode 100644
index 0000000000..9cfcb51f1b
--- /dev/null
+++ b/browser/components/preferences/tests/browser_search_subdialogs_within_preferences_4.js
@@ -0,0 +1,39 @@
+/*
+ * This file contains tests for the Preferences search bar.
+ */
+
+// Enabling Searching functionatily. Will display search bar form this testcase forward.
+add_task(async function () {
+ await SpecialPowers.pushPrefEnv({
+ set: [["browser.preferences.search", true]],
+ });
+});
+
+/**
+ * Test for searching for the "Update History" subdialog.
+ */
+add_task(async function () {
+ // The updates panel is disabled in MSIX builds.
+ if (
+ AppConstants.platform === "win" &&
+ Services.sysinfo.getProperty("hasWinPackageId")
+ ) {
+ return;
+ }
+ await openPreferencesViaOpenPreferencesAPI("paneGeneral", {
+ leaveOpen: true,
+ });
+ await evaluateSearchResults("updates have been installed", "updateApp");
+ BrowserTestUtils.removeTab(gBrowser.selectedTab);
+});
+
+/**
+ * Test for searching for the "Location Permissions" subdialog.
+ */
+add_task(async function () {
+ await openPreferencesViaOpenPreferencesAPI("paneGeneral", {
+ leaveOpen: true,
+ });
+ await evaluateSearchResults("location permissions", "permissionsGroup");
+ BrowserTestUtils.removeTab(gBrowser.selectedTab);
+});