@djliortal - Did you manage to get this working? I am also looking for how to solve recaptcha.
Here is what I have so far, but doesn't fully function.
Works - Clicking "I'm not a robot"
Not_working - Clicking "Reload" to try to get a text captcha
Works - Downloading text captcha image
Works - Clicking the "Verify" button
Code:
VERSION BUILD=8920312 RECORDER=FX
SET tempfolder C:\temp
'Click the "I'm not a robot" box
FRAME NAME="I0_*"
TAG POS=1 TYPE=DIV ATTR=ROLE:presentation&&CLASS:recaptcha-checkbox-checkmark&&TXT:
'Not sure how to click reload, as this does NOT work
'This just places a blue box around the reload button instead of clicking
FRAME NAME="I1_*"
TAG POS=1 TYPE=DIV ATTR=ID:recaptcha-reload-button
'Download the captcha image
FRAME NAME="I1_*"
ONDOWNLOAD FOLDER={{tempfolder}} FILE=captcha.jpg WAIT=YES
TAG POS=1 TYPE=IMG ATTR=SRC:*/recaptcha/api2/payload* CONTENT=EVENT:SAVEPICTUREAS
'left out lines for submitting to captcha service
'Type the results of the
TAG POS=1 TYPE=INPUT:TEXT ATTR=ID:default-response CONTENT={{!EXTRACT}}
'Click the Verify button
TAG POS=1 TYPE=DIV ATTR=ID:recaptcha-verify-button
Bookmarks