Socket
Socket
Sign inDemoInstall

gatsby-plugin-playwright

Package Overview
Dependencies
2
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    gatsby-plugin-playwright

Uses Playwright to generate screenshots in Chromium, Firefox and WebKit.


Version published
Weekly downloads
4
Maintainers
1
Install size
9.96 MB
Created
Weekly downloads
 

Readme

Source

gatsby-plugin-playwright

Uses Playwright to generate screenshots in Chromium, Firefox and WebKit.

NOTE: This plugin only generates output with gatsby build

Install

yarn add -D gatsby-plugin-playwright

Usage

plugins: ['gatsby-plugin-playwright']

Options

The options are as follows:

  • port (number) The port number for the web server to listen to. Defaults to 9000.
  • screenshotsDir (string) The screenshots directory path. Defaults to ./screenshots.
  • browsers (array of strings) An array of browsers for playwright to screenshot. Defaults to ['chromium', 'firefox', 'webkit']
  • context (BrowserContext) Defaults to {}
  • query (GraphQL Query) The query for the data you need to generate the screenshots. If you change the query you also need to change the serialize function to properly format the data.
  • serialize (function) Takes the output of the data query and has to return an array with strings that reflects the page path.

Example with options:

// gatsby-config.js for desktop testing
plugins: [
  {
    resolve: 'gatsby-plugin-playwright',
    options: {
      port: 9000,
      screenshotsDir: './screenshots',
      browsers: ['chromium', 'firefox', 'webkit'],
      context: {},
      query: `
        {
          allSitePage {
            nodes {
              path
            }
          }
        }
      `,
      serialize: function ({ allSitePage }) {
        return allSitePage.nodes.map((page) => page.path);
      }
    }
  },
]

Define a context to test for different widths, heights, geolocation and permissions. You can read more about the browser context on the official Playwright documentation

// gatsby-config.js for testing specific contexts
plugins: [
  {
    resolve: `gatsby-plugin-playwright`,
    options: {
      browsers: ['webkit'],
      // This example is an iPhone 11
      context: {
        'userAgent': 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0 Mobile/15E148 Safari/604.1',
        'viewport': {
          'width': 414,
          'height': 896
        },
        'deviceScaleFactor': 2,
        'isMobile': true,
        'hasTouch': true
      },
    }
  },
]

Keywords

FAQs

Last updated on 09 May 2020

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc