Advertisement
dereksir

Untitled

Aug 31st, 2023 (edited)
128
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.   const page = await browser.newPage()
  5.  
  6.   // Navigate to target URL
  7.   await page.goto('http://httpbin.io/ip');
  8.   // Get page HTML
  9.   const textContent = await page.evaluate(() => document.body.textContent);
  10.  
  11.   console.log(textContent);
  12.  
  13.   await browser.close()
  14. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement