
See the cypress app ^^
Just run a test
On Cypress 2.1.0, MacOS High Sierra with Chrome Canary 68.0.3400.0.
Maybe it's on canary's side but if the next version of Chrome introduce some breaking changes, it's something to be aware of
I'm not experiencing this in Canary 68.0.3400.0.

It looks like you have some other extensions installed in your Canary browser. Could you disable all of those first to further isolate the issue to Cypress? Let me know if the issue still occurs after that. Thanks.
I have same issue
Chrome 67.0.3396.79 on Mac

We'll need a reproducible example that we can run to get this to happen for us. I do not think this issue is likely relevant to the specific Chrome version, but some other reason that we'd love to track down. Thanks!
@lobor Also, as stated above, if you could you disable all of those first to further isolate the issue to Cypress? Let me know if the issue still occurs after that. Thanks.
so i had the same issue. I just remember i deleted my project's node_module/ folder a few minutes before facing that issue, and then i did a yarn install/npm install. I don't know if it can help you to reproduce the issue.
In my case, i use Electron instead of Chrome as a workaround of this issue
Yeah, deleting the node_module folder did not affect the runner. Did you happen to touch the App Data folder? Like File > App Data in menu bar?
I'm pretty confused on this one. :(
No i never touched that folder no. Can i try to empty it without any risk ?
Yes, I suppose it is worth a try:
File -> View App Datajust tested but doesn't help
and when i open a new tab on the browser window opened by cypress, it show the same... so seems like an issue with the "piloted browser" (i don't know how to call that)

I have the same issue.
I tried to remove cypress cache folder and reinstall it again.
But that did not help.
You all might want to pass in arguments to chrome to start disabling things like the GPU
You can do that in your pluginsFile as documented here: https://docs.cypress.io/api/plugins/browser-launch-api.html
For a full list of command line arguments use this:
https://peter.sh/experiments/chromium-command-line-switches/
Alternatively you could also remove the ones we pass in by default to see if those trigger it. Either something we're adding or something you need to add will fix this. But without a reproducible machine we won't be able to figure it out on our own.
You might want to start adding a bunch of the --disable-* flags
I am on
Sierra 10.12.6 3.0.167.0.3396.87--disable-gpu did the trick for me, thanks!
I can confirm that adding --disable-gpu fixes the issue.
I've also tried to remove all the default flags and it didn't fix it.
Then I have tried adding each --disable-gpu-*** and 2 of them also fixed the issue (separately):
--disable-gpu-compositing (Prevent the compositor from using its GPU implementation.)--disable-gpu-rasterization (Disable GPU rasterization, i.e. rasterize on the CPU only.)I have the same issue after updating to Chrome v67. The window looks like this:

Mac OS High Sierra v10.13.5
Cypress v3.0.2
Google Chrome v67.0.3396.99
I can also confirm that adding one of
--disable-gpu
--disable-gpu-compositing
--disable-gpu-rasterization
solves the problem for me.
Closing since there is a suggested workaround available.
Most helpful comment
You all might want to pass in arguments to chrome to start disabling things like the GPU
--disable-gpuYou can do that in your
pluginsFileas documented here: https://docs.cypress.io/api/plugins/browser-launch-api.htmlFor a full list of command line arguments use this:
https://peter.sh/experiments/chromium-command-line-switches/
Alternatively you could also remove the ones we pass in by default to see if those trigger it. Either something we're adding or something you need to add will fix this. But without a reproducible machine we won't be able to figure it out on our own.
You might want to start adding a bunch of the
--disable-*flags