summaryrefslogtreecommitdiffstats
path: root/comm/mail/test/browser/global-search-bar/browser_globalSearchBar.js
blob: 58c573a893f75d9ad0683297ddb0cfc226b34443 (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
40
41
42
43
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

/**
 * Tests Gloda search bar is focused after a search. What we are really
 * interested in however, is the search input not causing an error when it
 * gains focus.
 */
add_task(async function testGlobalSearchInputGainsFocus() {
  let searchInput = document.querySelector(".search-bar");
  EventUtils.synthesizeMouseAtCenter(searchInput, {}, window);
  EventUtils.sendString("Bugzilla", window);
  EventUtils.synthesizeKey("KEY_Enter", {}, window);

  let tabmail = document.querySelector("tabmail");
  Assert.equal(tabmail.tabInfo.length, 2);
  Assert.equal(tabmail.currentTabInfo, tabmail.tabInfo[1]);

  await TestUtils.waitForCondition(() => {
    let browser = tabmail.currentTabInfo.browser;
    return (
      browser &&
      !browser.webProgress?.isLoadingDocument &&
      browser.currentURI?.spec != "about:blank"
    );
  });

  let activeElement = document.activeElement;
  info(`<${activeElement.localName}>`);
  Assert.equal(
    activeElement.getAttribute("is"),
    "gloda-autocomplete-input",
    "gloda search input has focus"
  );
});

registerCleanupFunction(function tearDown() {
  let tabmail = document.querySelector("tabmail");
  while (tabmail.tabInfo.length > 1) {
    tabmail.closeTab(1);
  }
});