1
0
Fork 0
firefox/browser/components/preferences/tests/browser_password_management.js
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

43 lines
1.3 KiB
JavaScript

"use strict";
const { LoginTestUtils } = ChromeUtils.importESModule(
"resource://testing-common/LoginTestUtils.sys.mjs"
);
const { TelemetryTestUtils } = ChromeUtils.importESModule(
"resource://testing-common/TelemetryTestUtils.sys.mjs"
);
var passwordsDialog;
add_task(async function test_openPasswordManagement() {
await openPreferencesViaOpenPreferencesAPI("privacy", { leaveOpen: true });
let tabOpenPromise = BrowserTestUtils.waitForNewTab(gBrowser, "about:logins");
await SpecialPowers.spawn(gBrowser.selectedBrowser, [], function () {
let doc = content.document;
let savePasswordCheckBox = doc.getElementById("savePasswords");
Assert.ok(
!savePasswordCheckBox.checked,
"Save Password CheckBox should be unchecked by default"
);
let showPasswordsButton = doc.getElementById("showPasswords");
showPasswordsButton.click();
});
let tab = await tabOpenPromise;
ok(tab, "Tab opened");
// check telemetry events while we are in here
await LoginTestUtils.telemetry.waitForEventCount(1);
TelemetryTestUtils.assertEvents(
[["pwmgr", "open_management", "preferences"]],
{ category: "pwmgr", method: "open_management" },
{ clear: true, process: "content" }
);
BrowserTestUtils.removeTab(tab);
gBrowser.removeCurrentTab();
});