Focus
Collect feedback
~No.1 and No.4~
screencast
electron
7.Playwright Grid for the test excution,the same as .....
how httpproxy is going to be implemented? Will browser be patched to support it or it will be done from node side?
screencast: Screen video recording is crucial when it comes to debugging CI failures 馃敟
It would be great to add Playwright API calls as captions to the video, so it's easier to figure out what interaction did break a test.
For example:
const browser = await chromium.launch()
const page = await browser.newPage()
await page.startRecording()
await page.goto("https://google.com")
await page.waitForTimeout(1000)
await page.type("Hello world")
await page.waitForTimeout(1000)
await page.stopRecording()
await page.close()
It would be super nice to have the following caption in the video:
~0s: await page.goto("https://google.com")
~1s: await page.type("Hello world")
I would love to see support for client certificates!
馃憤 for the drag n drop & performance support
Client Certificate would be great!
Most helpful comment
7.Playwright Grid for the test excution,the same as .....