Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
domrec-playwright
Advanced tools
Uses domrec-core
to record DOM changes inside playwright scripts. Basically, makes it possible to record videos in headless chrome.
npm install --save domrec-playwright
or yarn add domrec-playwright
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
new PlaywrightRecorder(page)
: Create a new PlaywrightRecorder
. Page should be a playwright pageasync init()
: Sets up everythingasync stopRecording()
: Gathers data from the current open website. You should use this before closing the browser or after a failed testProperties:
recordings
: The collected recordings. For information about the data structure see https://github.com/Junkern/DOMRecrecordings
?Use the DOMRecPlayer
from https://github.com/Junkern/DOMRec#replaying
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
Playwright package to use domrec-core to record DOM changes
We found that domrec-playwright demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.