We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f3383e commit e3d63deCopy full SHA for e3d63de
tests/address_bar_and_search/test_search_bar_result.py
@@ -1,3 +1,4 @@
1
+import pytest
2
from selenium.webdriver import Firefox
3
from selenium.webdriver.common.by import By
4
from selenium.webdriver.support import expected_conditions as EC
@@ -6,6 +7,13 @@
6
7
from modules.page_object import AboutConfig
8
9
10
+@pytest.fixture()
11
+def add_prefs():
12
+ return [
13
+ ("browser.search.region", "US"),
14
+ ]
15
+
16
17
def test_search_bar_results(driver: Firefox):
18
"""
19
C1365213 - The Search Bar provides valid results for specific search terms
0 commit comments