Skip to content

Commit ea4c53d

Browse files
committed
Ajust Starfox vs Tesrail discrepancies
1 parent c735b0e commit ea4c53d

File tree

4 files changed

+7
-20
lines changed

4 files changed

+7
-20
lines changed

modules/page_object_about_pages.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77
StaleElementReferenceException,
88
WebDriverException,
99
)
10+
from selenium.webdriver import Firefox
1011
from selenium.webdriver.common.keys import Keys
1112
from selenium.webdriver.support import expected_conditions as EC
1213

1314
from modules.page_base import BasePage
1415
from modules.util import BrowserActions
15-
from selenium.webdriver import Firefox
1616

1717

1818
class AboutConfig(BasePage):

tests/bookmarks_and_history/test_edit_bookmark_from_bookmark_menu.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,10 @@ def test_edit_bookmark_from_bookmark_menu(driver: Firefox):
4848

4949
# Temporary fix before the other bookmarks issue is fixed
5050
nav.get_element("star-button").click()
51-
assert panel.get_element("bookmark-location").get_attribute("label") == "Other Bookmarks"
51+
assert (
52+
panel.get_element("bookmark-location").get_attribute("label")
53+
== "Other Bookmarks"
54+
)
5255
# Check bookmark name and location are changed in the bookmarks toolbar
5356
# panel.get_element("other-bookmarks-toolbar").click()
5457
# panel.element_visible("other-bookmarks-by-title", labels=["Mozilla Firefox"])

tests/preferences/test_prefs_search.py

-16
This file was deleted.

tests/tabs/test_navigation_multiple_tabs.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@
88

99
@pytest.fixture()
1010
def test_case():
11-
return "134647"
11+
return "134654"
1212

1313

1414
def test_navigation_multiple_tabs(driver: Firefox):
15-
"""C134647 - Verify that multiple tabs can be navigated via the scroll buttons"""
15+
"""C134647 - Verify that navigation through multiple tabs is allowed"""
1616

1717
tabs = TabBar(driver)
1818
num_tabs = 20

0 commit comments

Comments
 (0)