fune/browser/components/pocket/test/browser_pocket_panel.js
sreeise 51060bfde7 Bug 1405477 - Added automated tests for pocket r=Gijs
Added test for context menu button.

Differential Revision: https://phabricator.services.mozilla.com/D8086

--HG--
extra : moz-landing-system : lando
2018-10-31 09:25:02 +00:00

22 lines
789 B
JavaScript

/* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
add_task(async function() {
let tab = await BrowserTestUtils.openNewForegroundTab(gBrowser,
"https://example.com/browser/browser/components/pocket/test/test.html");
info("clicking on pocket button in url bar");
let pocketButton = document.getElementById("pocket-button");
pocketButton.click();
checkElements(true, ["pageActionActivatedActionPanel"]);
let pocketPanel = document.getElementById("pageActionActivatedActionPanel");
is(pocketPanel.state, "showing", "pocket panel is showing");
info("closing pocket panel");
pocketButton.click();
checkElements(false, ["pageActionActivatedActionPanel"]);
BrowserTestUtils.removeTab(tab);
});