Markus

Results 5 comments of Markus

I came across the same issue. The PR leading to this is https://github.com/SeleniumHQ/selenium/pull/10796

Cypress has this option: [interacting-with-elements#animations](https://docs.cypress.io/guides/core-concepts/interacting-with-elements#Animations). Maybe in some cases it makes sense to adjust the [stable](https://playwright.dev/docs/actionability#stable) option? See [playwright source](https://github.com/microsoft/playwright/blob/98215b4d74030dac7a98a37c67650fd9d0b82509/packages/playwright-core/src/server/injected/injectedScript.ts#L564) for injectedScript. Here we have the time hardcoded to 15....

For the time beeing i took the code from the injected functions and make the stable count accessible. Now the tests run through smoothly. Also if inspecting the trace, the...

I updated the function to include the waitForAnimations snippet + renamed stableFrames to samePositionCount to make it more clear what it is. @skysantoroa Basically playwright looks for two iterations to...

You may want to see this comment https://github.com/originjs/vite-plugin-federation/pull/213#issuecomment-1180018123