summaryrefslogtreecommitdiffstats
path: root/devtools/client/webconsole/test/browser/browser_console_context_menu_export_console_output.js
blob: bd5d2740bec0bd3503464d166297b45c59311b7b (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
44
45
46
47
48
49
50
51
52
53
/* Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

const TEST_URI = `data:text/html,<!DOCTYPE html><meta charset=utf8>console API calls<script>
  console.log({
    contentObject: "YAY!",
    deep: ["hello", "world"]
  });
</script>`;

add_task(async function () {
  // Show the content messages
  await pushPref("devtools.browsertoolbox.scope", "everything");

  await addTab(TEST_URI);

  info("Open the Browser Console");
  const hud = await BrowserConsoleManager.toggleBrowserConsole();

  info("Wait until the content object is displayed");
  const message = await waitFor(() =>
    findConsoleAPIMessage(
      hud,
      `Object { contentObject: "YAY!", deep: (2) […] }`
    )
  );
  ok(true, "Content object is displayed in the Browser Console");
  // Clear clipboard content.
  SpecialPowers.clipboardCopyString("");

  const menuPopup = await openContextMenu(hud, message);
  const exportClipboard = menuPopup.querySelector(
    "#console-menu-export-clipboard"
  );
  ok(exportClipboard, "copy menu item is enabled");

  const clipboardText = await waitForClipboardPromise(
    () => exportClipboard.click(),
    data => data.includes("YAY")
  );
  menuPopup.hidePopup();

  ok(true, "Clipboard text was found and saved");
  // We're only checking that the export did work.
  // browser_webconsole_context_menu_export_console_output.js covers the feature in
  // greater detail.
  ok(
    clipboardText.includes(`Object { contentObject: "YAY!", deep: (2) […] }`),
    "Message was exported to clipboard"
  );
});