Skip to content

Commit fff8369

Browse files
committed
formatting
1 parent f92f950 commit fff8369

File tree

3 files changed

+2
-7
lines changed

3 files changed

+2
-7
lines changed

tests/find_toolbar/test_find_in_pdf.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
1-
import logging
2-
from time import sleep
31

42
from selenium.webdriver import Firefox
5-
from selenium.webdriver.common.keys import Keys
63

74
from modules.browser_object import FindToolbar
85
from modules.page_base import BasePage

tests/form_autofill/test_address_autofill_attribute.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,7 @@ def test_address_attribute_selection(driver: Firefox, country_code: str):
3232
# Get the first element from the autocomplete dropdown
3333
first_item = autofill_popup_panel.get_nth_element(1)
3434
actual_value = autofill_popup_panel.hover_over_element(
35-
first_item,
36-
chrome=True
35+
first_item, chrome=True
3736
).get_primary_value(first_item)
3837

3938
# Get the primary value (street address) from the first item in the dropdown and assert that the actual value

tests/form_autofill/test_name_autofill_attribute.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,7 @@ def test_address_attribute_selection(driver: Firefox, country_code: str):
3232
# Get the first element from the autocomplete dropdown
3333
first_item = autofill_popup_panel.get_nth_element(1)
3434
actual_value = autofill_popup_panel.hover_over_element(
35-
first_item,
36-
chrome=True
35+
first_item, chrome=True
3736
).get_primary_value(first_item)
3837

3938
# Get the primary value (street address) from the first item in the dropdown and assert that the actual value

0 commit comments

Comments
 (0)