Skip to content

Commit

Permalink
selenium: fix find_xpath
Browse files Browse the repository at this point in the history
  • Loading branch information
naisanzaa committed Jul 3, 2024
1 parent 59f4e80 commit cb7b0ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion automon/integrations/seleniumWrapper/browser.py
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@ async def find_xpath(
current_url=self.current_url,
value=value,
)))
return self.find_element(value=value, by=by, **kwargs)
return await self.find_element(value=value, by=by, **kwargs)

async def get(self, url: str, **kwargs) -> bool:
"""get url"""
Expand Down

0 comments on commit cb7b0ab

Please sign in to comment.