blob: 9cfcb51f1b1cc23137f8ae94fa94026deaf12f8c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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);
});
|