×
☰ See All Chapters

Puppeteer Example

In this tutorial you will learn simple puppeteer example.  Navigating to https://tools4testing.com  and saving a screenshot as example.png.

Create a file example.js and put the below code. This example.js file should be created inside the directory or sub directory inside the directory where node node_modules are saved. (Directory where puppeteer and puppeteer core has been installed).

const puppeteer = require('puppeteer');

 

async function example() {

        const browser = await puppeteer.launch();

    const page = await browser.newPage();

        await page.setViewport({ width: 1366, height: 768});

    await page.goto('https://tools4testing.com/');

    await page.screenshot({

        path: 'example.png'

    });

 

    await browser.close();

}

 

example();

puppeteer-example-0
 

Execute below command to execute the script from the command line

node example.js

puppeteer-example-1
 

After execution you should see screenshot of https://tools4testing.com/

puppeteer-example-2
 

All Chapters
Author