
Security News
Package Maintainers Call for Improvements to GitHub’s New npm Security Plan
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
playwrigth-ws-inspector
Advanced tools
A playwright extension to inspect and validate websocket traffic
npm install playwright-ws-inspector --save-dev
// Fixture file...
import { intercepWsTraffic, PageWithWsInspector } from 'playwrigth-ws-inspector'
const test = baseTest.extend<CustomFixture>({
createCustomPage: async ({ context }, use) => {
const maker = async (options: { name: string }): Promise<PageWithWsInspector<CustomPage>> => {
let page = await context.newPage()
await intercepWsTraffic(page)
return page
}
await use(maker)
})
// Test file
test.describe('Test with WS interceptor', () => {
const page = await createCustomPage({ name: '[page]' })
await page.goto(SERVER_URL)
// reset the traffic data (required for ordered tests, but always a good pratice to reduce the test load)
page.resetWsTraffic()
//execute any playwright stuff...
//Test ws traffic on the page
page.expectWsTraffic({
assertations: [
{
type: "send",
name: "connect",
expect: {
type: "connect",
"message.version.major": 4,
},
}
]
})
})
import { intercepWsTraffic, PageWithWsInspector } from 'playwrigth-ws-inspector'
const test = baseTest.extend<CustomFixture>({
createCustomPage: async ({ context }, use) => {
const maker = async (options: { name: string }): Promise<PageWithWsInspector<CustomPage>> => {
let page = await context.newPage()
await intercepWsTraffic(page)
return page
}
await use(maker)
})
// Test file
test.describe('Test with WS interceptor', async ({ page }) => {
// call `intercepWsTraffic` before calling `page.goto`
await intercepWsTraffic(page)
await page.goto(SERVER_URL)
// reset the traffic data (required for ordered tests, but always a good pratice to reduce the test load)
page.resetWsTraffic()
//execute any playwright stuff...
//Test ws traffic on the page
page.expectWsTraffic({
assertations: [
{
type: "send",
name: "connect",
expect: {
type: "connect",
"message.version.major": 4,
},
}
]
})
})
Property | Descripton |
---|---|
type | 'send' or 'recv' |
name | Optional name to help indentify test failures |
expect | Optional record describing the expected payload |
expectNot | Optional record describing the not expected payload |
A payload description is a Record entry with "<json.path>: <number> | <string> | Object(deep equals) | RegEx"
FAQs
A playwright extension to inspect and validate websocket traffic
We found that playwrigth-ws-inspector demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
Product
Socket Firewall is a free tool that blocks malicious packages at install time, giving developers proactive protection against rising supply chain attacks.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.