Bug 1702327 - Fix browser_masterPassword.js r=jaws

Differential Revision: https://phabricator.services.mozilla.com/D110629
This commit is contained in:
Mark Striemer 2021-04-06 04:26:34 +00:00
Родитель 8d1ac9c6f7
Коммит b2fd091bba
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -68,7 +68,9 @@ add_task(async function test() {
"master-password-login-required notification should be visible" "master-password-login-required notification should be visible"
); );
let buttons = notification.querySelectorAll(".notification-button"); let buttons = notification.buttonContainer.querySelectorAll(
".notification-button"
);
is(buttons.length, 1, "Should have one button."); is(buttons.length, 1, "Should have one button.");
let refreshPromise = BrowserTestUtils.browserLoaded(browser); let refreshPromise = BrowserTestUtils.browserLoaded(browser);