extend auto completion to support google address (#1174)

This commit is contained in:
LawyZheng
2024-11-12 12:11:16 +08:00
committed by GitHub
parent 068535b719
commit 46d9dad25b
2 changed files with 23 additions and 1 deletions

View File

@@ -143,6 +143,10 @@ class SkyvernElement:
if autocomplete and autocomplete == "list":
return True
class_name: str = await self.get_attr("class")
if "autocomplete-input" in class_name:
return True
return False
async def is_custom_option(self) -> bool: