Open
Description
Getting this error back when the captcha solver runs on footlocker.com
This error occurs in captcha.js ->
const googleKey = await context.evaluate(({ captchaSelector: captchaDivSelectorStr, captchaIframeSelector: captchaIframeSelectorStr }) => { const captchaDiv = captchaDivSelectorStr && document.querySelector(captchaDivSelectorStr); const iframe = captchaDiv ? captchaDiv.querySelector('iframe') : document.querySelector(captchaIframeSelectorStr); const iframeSrc = iframe.getAttribute('src');
maybe someone can shed some light on this? I confused how it was able to target the iframe but the src attribute of the
iframe it found was null..