summaryrefslogtreecommitdiffstats
path: root/browser/components/preferences/tests/browser_searchFindMoreLink.js
blob: 92864c9f545ae4fe833c1f5a34cd8de68d635985 (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
/* Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/publicdomain/zero/1.0/ */

const TEST_URL = "https://example.org/";

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();
});