Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

domrec-playwright

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

domrec-playwright

Playwright package to use domrec-core to record DOM changes

  • 0.0.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

domrec-playwright

Uses domrec-core to record DOM changes inside playwright scripts. Basically, makes it possible to record videos in headless chrome.

Installation

npm install --save domrec-playwright or yarn add domrec-playwright

Usage

const {PlaywrightRecorder} = require('domrec-playwright')

// ...We are skipping the full setup of the playwright browsing session here
const page = await browser.newPage()

// Setup the Dom Recorder
const recorder = new PlaywrightRecorder(page)
await recorder.init()

// do your thing with playwright

await recorder.stopRecording()
await browser.close()
const recordings = recorder.recordings

API

  • new PlaywrightRecorder(page): Create a new PlaywrightRecorder. Page should be a playwright page
  • async init(): Sets up everything
  • async stopRecording(): Gathers data from the current open website. You should use this before closing the browser or after a failed test

Properties:

  • recordings: The collected recordings. For information about the data structure see https://github.com/Junkern/DOMRec

What to do with the recordings?

Use the DOMRecPlayer from https://github.com/Junkern/DOMRec#replaying

Inner Working

We use the recording.js from domrec-core to record dom changes. We also have a second script to simplify using the DOMRecorder.

To inject the two scripts, we use page.addInitScript. To receive the data of the dom recording, we use page.exposeFunction.

At the moment, we only start recording after the DOMContentLoaded event on the website was triggered and we record the whole document.body.

There are plans to make both settings (when and what to record) customizable.

FAQs

Package last updated on 15 Dec 2020

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc