Advertisement
dereksir

Untitled

Feb 19th, 2024
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.31 KB | None | 0 0
  1. #..
  2.     # inject the solved CAPTCHA solution into the page and click Submit button
  3.     await page.evaluate('''(solution) => {
  4.        document.getElementById('g-recaptcha-response').innerHTML = solution;        
  5.    }''', solution)
  6.  
  7.     # Click the submit button
  8.     await page.click('#recaptcha-demo-submit')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement