We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4121e3 commit f4fbec2Copy full SHA for f4fbec2
modules/browser_object_autofill_popup.py
@@ -1,3 +1,4 @@
1
+import logging
2
from typing import Union
3
4
from selenium.webdriver.remote.webelement import WebElement
@@ -47,6 +48,9 @@ def ensure_autofill_dropdown_visible(self, field_element: WebElement = None):
47
48
"""
49
self.element_exists("pop-up-component")
50
popup_component = self.get_element("pop-up-component")
51
+ logging.warning(
52
+ f"Parent pop up component: {len(popup_component.get_attribute('innerHTML')) > 1}"
53
+ )
54
if popup_component:
55
self.element_visible("select-form-option")
56
return self
0 commit comments