Tyler Biethman

Results 30 comments of Tyler Biethman

Sorry, I gave you the wrong link related to the DEBUG logs: https://docs.cypress.io/guides/references/troubleshooting#Print-DEBUG-logs You just need to set the DEBUG env with the cypress namespace prior to execution. How you...

With the fork, I'm really just looking for a simple project that exhibits the error you're seeing when you run it. When I pull it down and run it, it...

@FerdinandFidel can you confirm: * the exact command you're executing when you see this error * the directory in which you're executing the command above, relative to your project root...

Hi @manoj-fd, I started investigating this a bit and had a quick question off the jump. Looking at your example `index.js`: ```js module.exports = (on, config) => { Object.assign(config, {...

@manoj-fd Thank you for confirming. That means I'm barking up the wrong tree. I don't think the error in the sample project is the same that you're seeing in your...

Thanks @manoj-fd , that log helps explain why you're seeing the `connectToNewSpec called without wkAutomation` error. We launch the browser instance for the first spec and then subsequently reuse it...

This error is shown in the WebKit console log: > page.goto: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 310.) Can you verify whether or not your local endpoint (`https://localhost:3001`) can...

Hmm, the playwright-webkit error is interesting. Cypress sets the `--ignore-https-errors` option on the instance it launches. I'm curious if launching playwright-webkit with https errors ignored (`npx playwright-webkit wk --ignore-https-errors`) allows...

@extracker-ppetrov as of Cypress 10.4.0, the Electron browser bundled with Cypress is using Chromium 102. I'm curious if you're still experiencing these crashes with that version (or with the latest...

@Donaab thank you for the report, I can reproduce this. The interception of synchronous requests seems to lock up cypress indefinitely. If I don't intercept the synchronous request, the app...