Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test gets skipped with pattern: os == 'linux' && os_version == '18.04' && asan OR os == 'linux' && os_version == '18.04' && tsan OR win11_2009 && asan
- Manifest: browser/components/preferences/tests/browser.toml
/* Any copyright is dedicated to the Public Domain.
add_setup(async () => {
await SpecialPowers.pushPrefEnv({
set: [["browser.search.searchEnginesURL", TEST_URL]],
});
});
add_task(async function test_click_find_more_link() {
await openPreferencesViaOpenPreferencesAPI("search", { leaveOpen: true });
let promiseNewTab = BrowserTestUtils.waitForNewTab(gBrowser);
gBrowser.selectedBrowser.contentDocument
.getElementById("addEngines")
.scrollIntoView();
await BrowserTestUtils.synthesizeMouseAtCenter(
"#addEngines",
{},
gBrowser.selectedBrowser.browsingContext
);
let tab = await promiseNewTab;
Assert.equal(
tab.linkedBrowser.documentURI.spec,
TEST_URL,
"Should have loaded the expected page"
);
// Close both tabs.
gBrowser.removeCurrentTab();
gBrowser.removeCurrentTab();
});