Skip to content

Instantly share code, notes, and snippets.

@mnmkng
Last active March 4, 2021 15:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mnmkng/c1478016bfe1c6c562b5a3e2f7a18855 to your computer and use it in GitHub Desktop.
Save mnmkng/c1478016bfe1c6c562b5a3e2f7a18855 to your computer and use it in GitHub Desktop.
const Apify = require('apify');
Apify.main(async () => {
// Get the HTML of a web page
const { body } = await Apify.utils.requestAsBrowser({ url: 'https://www.example.com' });
console.log(body);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment