summaryrefslogtreecommitdiffstats
path: root/devtools/client/inspector/test/browser_inspector_inspect_parent_process_page.js
blob: 79e19071521f022ab4628d4918424c8d69eac421 (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
/* Any copyright is dedicated to the Public Domain.
 http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

// Check that the "inspect element" context menu item works for parent process
// chrome pages.
add_task(async function () {
  const tab = await addTab("about:debugging");

  const browser = tab.linkedBrowser;
  const document = browser.contentDocument;

  info("Wait until Connect page is displayed");
  await waitUntil(() => document.querySelector(".qa-connect-page"));
  const inspector = await clickOnInspectMenuItem(".qa-network-form-input");

  const selectedNode = inspector.selection.nodeFront;
  ok(selectedNode, "A node is selected in the inspector");
  is(
    selectedNode.tagName.toLowerCase(),
    "input",
    "The selected node has the correct tagName"
  );
  ok(
    selectedNode.className.includes("qa-network-form-input"),
    "The selected node has the expected className"
  );
});