summaryrefslogtreecommitdiffstats
path: root/testing/firefox-ui/tests/functional/locationbar/test_favicon_in_autocomplete.py
diff options
context:
space:
mode:
Diffstat (limited to 'testing/firefox-ui/tests/functional/locationbar/test_favicon_in_autocomplete.py')
-rw-r--r--testing/firefox-ui/tests/functional/locationbar/test_favicon_in_autocomplete.py62
1 files changed, 62 insertions, 0 deletions
diff --git a/testing/firefox-ui/tests/functional/locationbar/test_favicon_in_autocomplete.py b/testing/firefox-ui/tests/functional/locationbar/test_favicon_in_autocomplete.py
new file mode 100644
index 000000000..6e8a5f6b1
--- /dev/null
+++ b/testing/firefox-ui/tests/functional/locationbar/test_favicon_in_autocomplete.py
@@ -0,0 +1,62 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+from firefox_puppeteer import PuppeteerMixin
+from marionette_driver import Wait
+from marionette_harness import MarionetteTestCase
+
+
+class TestFaviconInAutocomplete(PuppeteerMixin, MarionetteTestCase):
+
+ PREF_SUGGEST_SEARCHES = 'browser.urlbar.suggest.searches'
+ PREF_SUGGEST_BOOKMARK = 'browser.urlbar.suggest.bookmark'
+
+ def setUp(self):
+ super(TestFaviconInAutocomplete, self).setUp()
+
+ # Disable suggestions for searches and bookmarks to get results only for history
+ self.marionette.set_pref(self.PREF_SUGGEST_SEARCHES, False)
+ self.marionette.set_pref(self.PREF_SUGGEST_BOOKMARK, False)
+
+ self.puppeteer.places.remove_all_history()
+
+ self.test_urls = [self.marionette.absolute_url('layout/mozilla.html')]
+
+ self.test_string = 'mozilla'
+ self.test_favicon = 'mozilla_favicon.ico'
+
+ self.autocomplete_results = self.browser.navbar.locationbar.autocomplete_results
+
+ def tearDown(self):
+ try:
+ self.autocomplete_results.close(force=True)
+ self.marionette.clear_pref(self.PREF_SUGGEST_SEARCHES)
+ self.marionette.clear_pref(self.PREF_SUGGEST_BOOKMARK)
+ finally:
+ super(TestFaviconInAutocomplete, self).tearDown()
+
+ def test_favicon_in_autocomplete(self):
+ # Open the test page
+ def load_urls():
+ with self.marionette.using_context('content'):
+ self.marionette.navigate(self.test_urls[0])
+ self.puppeteer.places.wait_for_visited(self.test_urls, load_urls)
+
+ locationbar = self.browser.navbar.locationbar
+
+ # Clear the location bar, type the test string, check that autocomplete list opens
+ locationbar.clear()
+ locationbar.urlbar.send_keys(self.test_string)
+ self.assertEqual(locationbar.value, self.test_string)
+ Wait(self.marionette).until(lambda _: self.autocomplete_results.is_complete)
+
+ result = self.autocomplete_results.visible_results[1]
+
+ result_icon = self.marionette.execute_script("""
+ return arguments[0].image;
+ """, script_args=[result])
+
+ self.assertIn(self.test_favicon, result_icon)
+
+ self.autocomplete_results.close()