Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

/* Any copyright is dedicated to the Public Domain.
"use strict";
/**
* Tests that the first run message is displayed.
*/
add_task(async function test_translations_panel_firstrun() {
const { cleanup } = await loadTestPage({
page: SPANISH_PAGE_URL,
languagePairs: LANGUAGE_PAIRS,
prefs: [["browser.translations.panelShown", false]],
});
await FullPageTranslationsTestUtils.openPanel({
onOpenPanel: FullPageTranslationsTestUtils.assertPanelViewFirstShow,
});
await FullPageTranslationsTestUtils.clickCancelButton();
await navigate("Load a different page on the same site", {
url: SPANISH_PAGE_URL_2,
});
await FullPageTranslationsTestUtils.openPanel({
onOpenPanel: FullPageTranslationsTestUtils.assertPanelViewDefault,
});
await FullPageTranslationsTestUtils.clickCancelButton();
await cleanup();
});