Brian Mann

Results 102 comments of Brian Mann

We are much closer to having this work. Here in `0.20.0` you are able to wrap elements and at least use Cypress commands on them. We'll still need to build...

No, this is all part of the complexity of support iframes. Essentially **all** of the same safeguards we've added to the main frame have to be replicated on iframes. We...

You'd likely need to write a custom command that takes this into account. It checks `document` and polls it until its ready

No, you shouldn't need to run tests in any specific order. That is usually indicative of a testing anti pattern, whereby you are relying on state being built up between...

Yeah we should definitely allow certain (or all) event handlers to be added, but we'd need to define the specification for this behavior. For instance, should the callbacks be called...

There are really two concerns here - caching the browser **version** and adding the browser **dependencies** for webkit. 1. Dependencies - we should definitely add the system dependencies for running...

Hey @liambutler ... @marktnoonan brought this to my attention and I am recommending and testing out an approach where we automatically cleanup our injections before any of your react code...

Cypress will always need to work as a proxy in order to function correctly - however the performance problems you mentioned are absolutely critical for us to implement/fix. As @lmiller1990...

You can achieve this by splitting the specs into groups and targeting them with a glob pattern... ``` // machine 1 cypress run --record --group foo --spec **/folder1/**.* // machine...

You can currently get a list of aliases using `cy.state('aliases')` although this is an internal API and it's not documented, so we can't guarantee that it's not going to change....