Skip to content

Commit

Permalink
add td interactable detecting (#1596)
Browse files Browse the repository at this point in the history
  • Loading branch information
wintonzheng authored Jan 20, 2025
1 parent dc96595 commit 0c02bde
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion skyvern/webeye/scraper/domUtils.js
Original file line number Diff line number Diff line change
Expand Up @@ -692,7 +692,8 @@ function isInteractable(element, hoverStylesMap) {
tagName === "a" ||
tagName === "i" ||
tagName === "li" ||
tagName === "p"
tagName === "p" ||
tagName === "td"
) {
const elementCursor = getElementComputedStyle(element)?.cursor;
if (elementCursor === "pointer") {
Expand Down

0 comments on commit 0c02bde

Please sign in to comment.