Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

/* Any copyright is dedicated to the Public Domain.
"use strict";
/**
* Tests that the popup is automatically offered.
*/
add_task(async function test_translations_panel_auto_offer() {
const { cleanup } = await loadTestPage({
page: SPANISH_PAGE_URL,
languagePairs: LANGUAGE_PAIRS,
autoOffer: true,
});
await FullPageTranslationsTestUtils.clickCancelButton();
await TestTranslationsTelemetry.assertEvent(Glean.translationsPanel.open, {
expectedEventCount: 1,
expectNewFlowId: true,
allValuePredicates: [
value => value.extra.auto_show === "true",
value => value.extra.view_name === "defaultView",
value => value.extra.opened_from === "translationsButton",
value => value.extra.document_language === "es",
],
});
await TestTranslationsTelemetry.assertEvent(
Glean.translationsPanel.cancelButton,
{
expectedEventCount: 1,
expectNewFlowId: false,
}
);
await TestTranslationsTelemetry.assertEvent(Glean.translationsPanel.close, {
expectedEventCount: 1,
expectNewFlowId: false,
});
await navigate("Navigate to another page on the same domain.", {
url: SPANISH_PAGE_URL_2,
});
await FullPageTranslationsTestUtils.assertTranslationsButton(
{ button: true },
"The button is still shown."
);
await navigate("Navigate to a page on a different domain.", {
url: SPANISH_PAGE_URL_DOT_ORG,
onOpenPanel: FullPageTranslationsTestUtils.assertPanelViewDefault,
});
await FullPageTranslationsTestUtils.clickCancelButton();
await TestTranslationsTelemetry.assertEvent(Glean.translationsPanel.open, {
expectedEventCount: 2,
expectNewFlowId: true,
allValuePredicates: [
value => value.extra.auto_show === "true",
value => value.extra.view_name === "defaultView",
value => value.extra.opened_from === "translationsButton",
value => value.extra.document_language === "es",
],
});
await TestTranslationsTelemetry.assertEvent(
Glean.translationsPanel.cancelButton,
{
expectedEventCount: 2,
expectNewFlowId: false,
}
);
await TestTranslationsTelemetry.assertEvent(Glean.translationsPanel.close, {
expectedEventCount: 2,
expectNewFlowId: false,
});
await cleanup();
});