Oscaruzzo

Results 9 comments of Oscaruzzo

+1 on this. Sometimes CAPS LOCK (my "compose" key) gets "stuck" and the only way to stop writing all caps is exit WinCompose, press CAPS LOCK, start WinCompose again. I...

This would be incredibly useful. I'm using the third-party reporter other people mentioned, at the moment https://github.com/alexneo2003/playwright-azure-reporter but a "built-in" integration would be awesome. Also integrated in the VSCode pluging,...

+1 on this. We have some websocket traffic (push notifications, mainly, plus some relatively small data, all json based) and it would be REALLY useful to include this in traces.

I can confirm this still happens when updating from 7.2.15 to 7.3.8 Workaround: run these commands in a powershell 7 prompt (as administrator) ``` Get-PSSessionConfiguration | Unregister-PSSessionConfiguration Enable-PSRemoting ```

This issue should NOT be closed. The update from 7.2.x to 7.3.x still doesn't fix the configuration 'Powershell.7' which is left dangling and pointing to a non existent 7.2. Forcing...

> > This issue should NOT be closed. The update from 7.2.x to 7.3.x still doesn't fix the configuration 'Powershell.7' which is left dangling and pointing to a non existent...

Addendum: at the moment I'm doing this, and it works, but I feel it's a bit clunky ``` await expect.poll(async () => { const headers = await page.getByRole('columnheader').all(); const headersIds...

> [@Oscaruzzo](https://github.com/Oscaruzzo) would an array of dictionaries be as good(i.e. instead of : `await expect(page.locator(".theClass")).toHaveAttribute("someAttr", ["a", "b", "c"])` we'll have: `await expect(page.locator(".theClass")).toHaveAttribute([{"someAttr":"a"},{ "someAttr":"b"},{"someAttr": "c"}])` ? I have to say I'm...

For posterity: ATM I'm doing this. It could probably be improved (I'm not happy about the way errors are reported, but I don't know how to improve it) ``` export...