Skip to content

Commit dfc39a3

Browse files
committed
change PR template (add testrail)
1 parent 33f1619 commit dfc39a3

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

.github/pull_request_template.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Please include a summary of the changes and the related issue. Please also inclu
44

55
## Bugzilla bug ID
66

7-
**ID:**
7+
**Testrail:**
88
**Link:**
99

1010
## Type of change

tests/preferences/test_firefox_home_new_tabs.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
from time import sleep
22

33
from selenium.webdriver import Firefox
4-
from modules.page_object import AboutPrefs, AboutNewtab
4+
55
from modules.browser_object import TabBar
6+
from modules.page_object import AboutNewtab, AboutPrefs
7+
68

79
def test_firefox_home_new_tab(driver: Firefox):
810
"""
@@ -15,7 +17,9 @@ def test_firefox_home_new_tab(driver: Firefox):
1517
drop_down = about_prefs.get_element("home-new-tabs-dropdown")
1618
drop_down.click()
1719

18-
home_option = about_prefs.get_element("home-new-tabs-dropdown-option-default", parent_element=drop_down)
20+
home_option = about_prefs.get_element(
21+
"home-new-tabs-dropdown-option-default", parent_element=drop_down
22+
)
1923
home_option.click()
2024

2125
assert drop_down.get_attribute("label") == "Firefox Home (Default)"

0 commit comments

Comments
 (0)