Skip to content

Commit e3d63de

Browse files
committed
Add fixture for setting region (need once PR #81 lands)
1 parent 4f3383e commit e3d63de

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

tests/address_bar_and_search/test_search_bar_result.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import pytest
12
from selenium.webdriver import Firefox
23
from selenium.webdriver.common.by import By
34
from selenium.webdriver.support import expected_conditions as EC
@@ -6,6 +7,13 @@
67
from modules.page_object import AboutConfig
78

89

10+
@pytest.fixture()
11+
def add_prefs():
12+
return [
13+
("browser.search.region", "US"),
14+
]
15+
16+
917
def test_search_bar_results(driver: Firefox):
1018
"""
1119
C1365213 - The Search Bar provides valid results for specific search terms

0 commit comments

Comments
 (0)