Brian Mann

Results 102 comments of Brian Mann

- I tried every combination I could think of by changing the order, but the problem still persists. - You can just use the code I pasted above as the...

`cy.clock` and `cy.tick` are wrappers around lolex: https://github.com/sinonjs/lolex Lolex has a much broader API that has methods to make this easier. We should probably do a better job exposing all...

Oh I could be **totally** wrong about the redirects... I just saw that edited and assumed that's where the functionality is. I didn't look at the `netlify.toml` so if that's...

That part of the debugger protocol would only work for Chrome and is not cross browser compatible. If we exposed that, it would either have to be restricted to Chrome...

Yeah I can't think of a way around this other than to hide the Cypress UI and then change the width and height of the actual browser window. It's actually...

Agreed. This is possible to do and we will do this - even if its just for Chrome. This belongs in the same category as "native events", which is something...

How could two instances of the test run occur simultaneously? If you wanted to parallelize you would do it over two different docker containers.

This issue has been superseded by this: https://github.com/cypress-io/cypress/issues/681 That will remove the need to recover since it fixes the problem at its core

These things already exist. You can use off the shelf tools to convert xpath to css selectors. https://www.google.com/search?q=xpath+to+selector+converter&oq=xpath+to+selector+converter&aqs=chrome..69i57j0l4.6500j0j4&sourceid=chrome&ie=UTF-8 There are a few NPM modules you can just install and require...

@kamituel in your example above why couldn't you just do this? ```js // find the cell containing the content cy.contains('td', '20') // or you could find a higher up element...