Advertisement
dereksir

Untitled

Aug 31st, 2023 (edited)
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //..
  2.  
  3. chromium.launch({ headless: true }).then(async browser => {
  4.  
  5.     //..
  6.  
  7.     // The single line of code to solve reCaptchas
  8.     await page.solveRecaptchas()
  9.  
  10.     // Click the Check button
  11.     await page.click('text=Check');
  12.     // Wait a few seconds
  13.     await page.waitForTimeout(5000);
  14.  
  15.     console.log('Taking a screenshot...');
  16.  
  17.     // Take a screenshot and save to project folder
  18.     await page.screenshot({ path: 'screenshot.png', fullPage: true });
  19.    
  20.     console.log('Screenshot saved');
  21.     await browser.close();
  22. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement