Matt Henkes

Results 101 comments of Matt Henkes

I'm able to recreate this issue with just the node version set to 18.12.1 ```dockerfile ARG NODE_VERSION='18.12.1' FROM cypress/factory ``` I'm not seeing an issue with node 18.14.1 which is...

@hollyfoxx i was able to successfully install node 16.0.0 with: ```dockerfile ARG NODE_VERSION='16.0.0' FROM cypress/factory:latest ```

We currently only support yarn v1 in the docker factory. I think we could update the install script to support higher versions of yarn.

@anishpb97, Sure! (sorry for the delay)

I've tried this in this branch: [unknown-non-root](https://github.com/cypress-io/cypress-docker-images/tree/matth/fix/unknown-non-root) It successfully fixed it when cypress is i[nstalled globally](https://github.com/cypress-io/cypress-docker-images/blob/matth/fix/unknown-non-root/factory/test-project/docker-compose.yml#L67-L75), but the issue persisted when cypress was[ installed by the user](https://github.com/cypress-io/cypress-docker-images/blob/matth/fix/unknown-non-root/factory/test-project/docker-compose.yml#L32-L40). I tried messing...

Try enabling "experimentalModifyObstructiveThirdPartyCode", I'm not sure the page finishes loading correctly but the experimental flag removes the 'navigate back' behaviour you are seeing.

@TiManGames, something in the site you're testing is reacting negatively to being iframed in the test runner. `modifyObstructiveCode` and `experimentalModifyObstructiveThirdPartyCode` both attempt to modify the page as it's loaded to...

@lidiagc, given that you're seeing this less frequently on 11.0.1 would you be ok with us closing this issue?

I wonder if you're running into chrome rendering crashes, in 10.11.0 we are now catching the crashes and continuing the tests where as before it would cause a hang. https://github.com/cypress-io/cypress/issues/6170...

You could try chrome 10.11.0 and see if your hangs continue (to be replaced with crashes 😕)