summaryrefslogtreecommitdiffstats
path: root/devtools/client/netmonitor/test/browser_net_header-request-priority.js
blob: 196116a98d9f0990d38f1480628920f45d467505 (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
/* Any copyright is dedicated to the Public Domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

/**
 * Tests if "Request Priority" is displayed in the header panel.
 */
add_task(async function () {
  const { monitor } = await initNetMonitor(POST_RAW_URL, {
    requestCount: 1,
  });

  const { document } = monitor.panelWin;

  const waitReq = waitForNetworkEvents(monitor, 1);
  EventUtils.sendMouseEvent(
    { type: "click" },
    document.querySelector(".requests-list-reload-notice-button")
  );
  await waitReq;

  // Wait until the tab panel summary is displayed
  const wait = waitUntil(
    () => document.querySelectorAll(".tabpanel-summary-label")[0]
  );
  EventUtils.sendMouseEvent(
    { type: "mousedown" },
    document.querySelectorAll(".request-list-item")[0]
  );
  await wait;

  const requestPriorityHeaderExists = Array.from(
    document.querySelectorAll(".tabpanel-summary-label")
  ).some(header => header.textContent === "Request Priority");
  is(
    requestPriorityHeaderExists,
    true,
    '"Request Priority" header is displayed in the header panel.'
  );

  return teardown(monitor);
});