summaryrefslogtreecommitdiffstats
path: root/browser/components/translations/tests/browser/browser_translations_full_page_panel_close_panel_never_translate_language_wit...
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 01:14:29 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 01:14:29 +0000
commitfbaf0bb26397aa498eb9156f06d5a6fe34dd7dd8 (patch)
tree4c1ccaf5486d4f2009f9a338a98a83e886e29c97 /browser/components/translations/tests/browser/browser_translations_full_page_panel_close_panel_never_translate_language_with_translations_inactive.js
parentReleasing progress-linux version 124.0.1-1~progress7.99u1. (diff)
downloadfirefox-fbaf0bb26397aa498eb9156f06d5a6fe34dd7dd8.tar.xz
firefox-fbaf0bb26397aa498eb9156f06d5a6fe34dd7dd8.zip
Merging upstream version 125.0.1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'browser/components/translations/tests/browser/browser_translations_full_page_panel_close_panel_never_translate_language_with_translations_inactive.js')
-rw-r--r--browser/components/translations/tests/browser/browser_translations_full_page_panel_close_panel_never_translate_language_with_translations_inactive.js93
1 files changed, 93 insertions, 0 deletions
diff --git a/browser/components/translations/tests/browser/browser_translations_full_page_panel_close_panel_never_translate_language_with_translations_inactive.js b/browser/components/translations/tests/browser/browser_translations_full_page_panel_close_panel_never_translate_language_with_translations_inactive.js
new file mode 100644
index 0000000000..95ff86ba7f
--- /dev/null
+++ b/browser/components/translations/tests/browser/browser_translations_full_page_panel_close_panel_never_translate_language_with_translations_inactive.js
@@ -0,0 +1,93 @@
+"use strict";
+
+/**
+ * Tests the effect of checking the never-translate-language menuitem on a page where
+ * translations and never translate site are inactive.
+ * Checking the box on the page automatically closes/hides the translations panel.
+ */
+add_task(async function test_panel_closes_on_toggle_never_translate_language() {
+ const { cleanup } = await loadTestPage({
+ page: SPANISH_PAGE_URL,
+ languagePairs: LANGUAGE_PAIRS,
+ });
+
+ await FullPageTranslationsTestUtils.assertTranslationsButton(
+ { button: true },
+ "The translations button is available"
+ );
+
+ await FullPageTranslationsTestUtils.openPanel({
+ openFromAppMenu: true,
+ onOpenPanel: FullPageTranslationsTestUtils.assertPanelViewDefault,
+ });
+
+ await FullPageTranslationsTestUtils.openTranslationsSettingsMenu();
+
+ await FullPageTranslationsTestUtils.assertIsNeverTranslateLanguage("es", {
+ checked: false,
+ });
+ await FullPageTranslationsTestUtils.waitForPanelPopupEvent(
+ "popuphidden",
+ async () => {
+ await FullPageTranslationsTestUtils.clickNeverTranslateLanguage();
+ }
+ );
+ await cleanup();
+});
+
+/**
+ * Tests the effect of checking the never-translate-language menuitem on a page where
+ * translations are inactive (never-translate-site is enabled).
+ * Checking the box on the page automatically closes/hides the translations panel.
+ */
+add_task(
+ async function test_panel_closes_on_toggle_never_translate_language_with_never_translate_site_enabled() {
+ const { cleanup } = await loadTestPage({
+ page: SPANISH_PAGE_URL,
+ languagePairs: LANGUAGE_PAIRS,
+ });
+
+ await FullPageTranslationsTestUtils.assertTranslationsButton(
+ { button: true },
+ "The translations button is available"
+ );
+
+ await FullPageTranslationsTestUtils.openPanel({
+ openFromAppMenu: true,
+ onOpenPanel: FullPageTranslationsTestUtils.assertPanelViewDefault,
+ });
+
+ await FullPageTranslationsTestUtils.openTranslationsSettingsMenu();
+
+ await FullPageTranslationsTestUtils.assertIsNeverTranslateSite(
+ SPANISH_PAGE_URL,
+ { checked: false }
+ );
+ await FullPageTranslationsTestUtils.clickNeverTranslateSite();
+ await FullPageTranslationsTestUtils.assertIsNeverTranslateSite(
+ SPANISH_PAGE_URL,
+ { checked: true }
+ );
+
+ await FullPageTranslationsTestUtils.openPanel({
+ openFromAppMenu: true,
+ onOpenPanel: FullPageTranslationsTestUtils.assertPanelViewDefault,
+ });
+ await FullPageTranslationsTestUtils.openTranslationsSettingsMenu();
+ await FullPageTranslationsTestUtils.assertIsNeverTranslateSite(
+ SPANISH_PAGE_URL,
+ { checked: true }
+ );
+
+ await FullPageTranslationsTestUtils.assertIsNeverTranslateLanguage("es", {
+ checked: false,
+ });
+ await FullPageTranslationsTestUtils.waitForPanelPopupEvent(
+ "popuphidden",
+ async () => {
+ await FullPageTranslationsTestUtils.clickNeverTranslateLanguage();
+ }
+ );
+ await cleanup();
+ }
+);