Skip to content

Commit 115b867

Browse files
committed
Some changes
1 parent 64d29dc commit 115b867

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

l10n_CM/constants/movieposters/CA/movieposters_ad.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
"address_level_2": "3ee2821f-8f38-4a9d-b95c-e3f62b4ea69e",
99
"address_level_1": "ecbdd508-3d94-45ec-97b5-c2b642dc3fe6",
1010
"postal_code": "f60c786d-a9bb-41af-ac0f-bff95bb7d3ad",
11-
1211
"country" : "c02b72d4-ba59-4c54-bd27-b4b686cc9133",
1312
"telephone": "c11c59df-db4e-459a-9590-4798a6d22030",
1413
"email": "5f14e679-8b86-4b2d-98ab-0746f1902eca"

modules/browser_object_autofill_popup.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,10 @@ def ensure_autofill_dropdown_visible(self, field_element: WebElement = None):
4545
field_element: if field element is given.
4646
check whether it is a select element. pass the check if it is.
4747
"""
48-
self.element_visible("select-form-option")
48+
self.element_exists("pop-up-component")
49+
popup_component = self.get_element("pop-up-component")
50+
if popup_component:
51+
self.element_visible("select-form-option")
4952
return self
5053

5154
# Interaction with popup elements

0 commit comments

Comments
 (0)