diff options
Diffstat (limited to 'devtools/client/shared/test/browser_telemetry_button_eyedropper.js')
-rw-r--r-- | devtools/client/shared/test/browser_telemetry_button_eyedropper.js | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/devtools/client/shared/test/browser_telemetry_button_eyedropper.js b/devtools/client/shared/test/browser_telemetry_button_eyedropper.js new file mode 100644 index 0000000000..da3df5fd84 --- /dev/null +++ b/devtools/client/shared/test/browser_telemetry_button_eyedropper.js @@ -0,0 +1,37 @@ +/* Any copyright is dedicated to the Public Domain. + http://creativecommons.org/publicdomain/zero/1.0/ */ + +"use strict"; + +const TEST_URI = + "data:text/html;charset=utf-8," + + "<p>browser_telemetry_button_eyedropper.js</p><div>test</div>"; + +add_task(async function() { + await addTab(TEST_URI); + startTelemetry(); + + const target = await TargetFactory.forTab(gBrowser.selectedTab); + const toolbox = await gDevTools.showToolbox(target, "inspector"); + + info("testing the eyedropper button"); + await testButton(toolbox); + + await toolbox.destroy(); + gBrowser.removeCurrentTab(); +}); + +async function testButton(toolbox, Telemetry) { + info("Calling the eyedropper button's callback"); + // We call the button callback directly because we don't need to test the UI here, we're + // only concerned about testing the telemetry probe. + await toolbox.getPanel("inspector").showEyeDropper(); + + checkResults(); +} + +function checkResults() { + // For help generating these tests use generateTelemetryTests("devtools.") + // here. + checkTelemetry("devtools.toolbar.eyedropper.opened", "", 1, "scalar"); +} |