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.
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
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.