Mateusz Burzyński

Results 1531 comments of Mateusz Burzyński

My main motivation is that with test scenarios like this: ```js cy.realKeyDown('ShiftLeft') cy.realClick() cy.realKeyUp('ShiftLeft') ``` I would expect the click to be performed with the shift key being pressed down...

> It's implicit. I mean developer who doesn't know that this library works this way might be confused by the fact that previous command affects the current one I agree...

@dmtrKovalenko any more thoughts about this one?

I would love to get this landed - anything in particular that I could help with?

I didn't yet have time to look into this yet - it seems that you have been testing this with native `[draggable]` element and maybe this doesn't work for some...

Btw. based on this test: https://github.com/microsoft/playwright/blob/d70e37de80f99c3fe953921abd5ad7ba1a7f1da8/tests/page/page-drag.spec.ts#L34-L51 and this fixture: https://github.com/microsoft/playwright/blob/d70e37de80f99c3fe953921abd5ad7ba1a7f1da8/tests/assets/drag-n-drop.html it looks like it should work as this is using roughly the same stuff under the hood: https://github.com/microsoft/playwright/blob/1bfc473bc8b88a708c29bfab2bb26c2efc3b2706/packages/playwright-core/src/server/chromium/crInput.ts#L99-L137 However, the...

Can I count as somebody who got really mad because of this? 😅 It really makes writing some tests quite cumbersome. For instance, I need to write a test that...

@nileshgulia1 I'm not sure if that's currently possible - I can't find anything related to copy-pasting in the Chrome Debugger Protocol. And it seems that Playwright doesn't support this yet...

@devanshj is it possible to get `bindAll` typed using a single signature in a way that the listener for each item would be typed based on the type property of...

Module field is OK - the only thing you have to do to make it work is to expose the same shape from each format. If that requires a major...