Skip to content

Commit 5b94a78

Browse files
Hani YacoubHani Yacoub
authored andcommitted
Merge branch 'main' into Hani/refactor_pass_manager_batch1
2 parents b844c66 + bbdc044 commit 5b94a78

File tree

4 files changed

+8
-2
lines changed

4 files changed

+8
-2
lines changed

tests/bookmarks_and_history/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ def suite_id():
99
@pytest.fixture()
1010
def prefs_list(add_to_prefs_list: dict):
1111
"""List of prefs to send to main conftest.py driver fixture"""
12-
prefs = [("browser.toolbars.bookmarks.visibility", "Always")]
12+
prefs = [("browser.toolbars.bookmarks.visibility", "always")]
1313
prefs.extend(add_to_prefs_list)
1414
return prefs
1515

tests/bookmarks_and_history/test_edit_bookmark_from_bookmark_menu.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ def test_case():
1818
"""
1919

2020

21+
@pytest.mark.unstable(reason="https://bugzilla.mozilla.org/show_bug.cgi?id=1963396")
2122
def test_edit_bookmark_from_bookmark_menu(driver: Firefox):
2223
"""
2324
C2084490: Verify that the user can Edit a Bookmark from Bookmarks menu

tests/bookmarks_and_history/test_open_all_bookmarks_from_bookmarks_toolbar.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def test_open_all_bookmarks_from_bookmarks_toolbar(driver: Firefox):
3838
GenericPage(driver, url=URL_NOT_BOOKMARKED).open()
3939

4040
# Toggle bookmarks toolbar
41-
nav.toggle_bookmarks_toolbar_with_key_combo()
41+
# nav.toggle_bookmarks_toolbar_with_key_combo()
4242

4343
# Right-click on a blank space from Bookmarks Toolbar menu and choose open all bookmarks
4444
panel.context_click("bookmarks-toolbar")

tests/bookmarks_and_history/test_toggle_bookmarks_toolbar.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,11 @@ def test_case():
99
return "2084637"
1010

1111

12+
@pytest.fixture()
13+
def add_to_prefs_list():
14+
return [("browser.toolbars.bookmarks.visibility", "never")]
15+
16+
1217
def test_toggle_bookmark_toolbar(driver: Firefox):
1318
"""
1419
C2084637: Verify that the user can Hide or Show the Bookmarks Toolbar using Keyboard shortcuts

0 commit comments

Comments
 (0)