summaryrefslogtreecommitdiffstats
path: root/browser/components/translations/tests/browser/browser_translations_select_panel_mainview_ui.js
blob: 79d21e57d089abc4e37a496d8a4010802ce2ce5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/* Any copyright is dedicated to the Public Domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

/**
 * This test case verifies the visibility and initial state of UI elements within the
 * Select Translations Panel's main-view UI.
 */
add_task(
  async function test_select_translations_panel_mainview_ui_element_visibility() {
    const { cleanup, runInPage } = await loadTestPage({
      page: SPANISH_PAGE_URL,
      languagePairs: LANGUAGE_PAIRS,
      prefs: [["browser.translations.select.enable", true]],
    });

    await FullPageTranslationsTestUtils.assertTranslationsButton(
      { button: true, circleArrows: false, locale: false, icon: true },
      "The button is available."
    );

    await FullPageTranslationsTestUtils.assertPageIsUntranslated(runInPage);

    await SelectTranslationsTestUtils.openPanel(runInPage, {
      selectSpanishParagraph: true,
      openAtSpanishParagraph: true,
      expectedTargetLanguage: "es",
      onOpenPanel: SelectTranslationsTestUtils.assertPanelViewDefault,
    });

    await SelectTranslationsTestUtils.clickDoneButton();

    await cleanup();
  }
);