diff --git a/skyvern/webeye/scraper/domUtils.js b/skyvern/webeye/scraper/domUtils.js index e7cf969c..96fd00b7 100644 --- a/skyvern/webeye/scraper/domUtils.js +++ b/skyvern/webeye/scraper/domUtils.js @@ -457,8 +457,13 @@ function isInteractable(element) { tagName === "i" ) { const computedStyle = window.getComputedStyle(element); - const hasPointer = computedStyle.cursor === "pointer"; - return hasPointer; + if (computedStyle.cursor === "pointer") { + return true; + } + // FIXME: hardcode to fix the bug about hover style now + if (element.className.toString().includes("hover:cursor-pointer")) { + return true; + } } return false;