Bug 1836204 - Re-enable translations in automation; r=nordzilla,webdriver-reviewers,whimboo

Differential Revision: https://phabricator.services.mozilla.com/D182926
This commit is contained in:
Greg Tatum 2023-07-07 10:57:39 +00:00
Родитель 2b08a9c69b
Коммит 36e99c64ea
3 изменённых файлов: 0 добавлений и 11 удалений

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

@ -175,10 +175,6 @@ function defaultProfilePreferences(
// Do not warn when multiple tabs will be opened
'browser.tabs.warnOnOpen': false,
// Disable page translations, which can cause issues with tests.
// See https://bugzilla.mozilla.org/show_bug.cgi?id=1836093.
'browser.translations.enable': false,
// Disable the UI tour.
'browser.uitour.enabled': false,
// Turn off search suggestions in the location bar so as not to trigger

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

@ -52,10 +52,6 @@ lazy_static! {
// Start with a blank page (about:blank)
("browser.startup.page", Pref::new(0)),
// Disable page translations, causing timeouts for wdspec tests in early
// beta. See Bug 1836093.
("browser.translations.enable", Pref::new(false)),
// Disable the UI tour
("browser.uitour.enabled", Pref::new(false)),

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

@ -45,9 +45,6 @@ class GeckoInstance(object):
"browser.region.network.url": "",
# Don't pull Top Sites content from the network
"browser.topsites.contile.enabled": False,
# Disable page translations, causing timeouts for wdspec tests in early
# beta. See Bug 1836093.
"browser.translations.enable": False,
# Disable UI tour
"browser.uitour.pinnedTabUrl": "http://%(server)s/uitour-dummy/pinnedTab",
"browser.uitour.url": "http://%(server)s/uitour-dummy/tour",