modules/page_object_autofill.py [553:560]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        ):
            return
        field = self.field_mapping.get(field_label, None)
        if field:
            autofill_field = self.get_element("form-field", labels=[field])
            if autofill_field.tag_name.lower() != "select":
                self.double_click("form-field", labels=[field])
                self.autofill_popup.ensure_autofill_dropdown_visible()
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



modules/page_object_autofill.py [607:616]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        ):
            return

        field = self.field_mapping.get(field_label, None)
        if field:
            autofill_field = self.get_element("form-field", labels=[field])
            if autofill_field.tag_name.lower() != "select":
                # Double-click a field and choose the first element from the autocomplete dropdown
                self.double_click("form-field", labels=[field])
                self.autofill_popup.ensure_autofill_dropdown_visible()
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



