Skip to content

Commit

Permalink
extend interactable coverage (#1170)
Browse files Browse the repository at this point in the history
  • Loading branch information
LawyZheng authored Nov 11, 2024
1 parent e0fa51e commit 3b2a7dc
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions skyvern/webeye/scraper/domUtils.js
Original file line number Diff line number Diff line change
Expand Up @@ -484,6 +484,10 @@ function isInteractable(element) {
return true;
}

if (tagName === "span" && element.closest("div[id^='dropdown-container']")) {
return true;
}

if (
tagName === "div" ||
tagName === "img" ||
Expand Down

0 comments on commit 3b2a7dc

Please sign in to comment.