blob: 1091dd2dd44493bb8587ff1de9c8be90e20fa696 (
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
|
/*
* 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 "Block Lists" subdialog.
*/
add_task(async function () {
async function doTest() {
await openPreferencesViaOpenPreferencesAPI("paneGeneral", {
leaveOpen: true,
});
await evaluateSearchResults("block online trackers", "trackingGroup");
BrowserTestUtils.removeTab(gBrowser.selectedTab);
}
await doTest();
});
/**
* Test for searching for the "Allowed Sites - Pop-ups" subdialog.
*/
add_task(async function () {
await openPreferencesViaOpenPreferencesAPI("paneGeneral", {
leaveOpen: true,
});
await evaluateSearchResults("open pop-up windows", "permissionsGroup");
BrowserTestUtils.removeTab(gBrowser.selectedTab);
});
|