Josh Kaplan

Results 8 comments of Josh Kaplan

Yeah, it's the `esr` version, which I guess means I'm on an older version of Firefox. Installing 2.1 resolved. Might be worth mentioning in `README` or adding a compatibility chart...

on our end: * it's using the module api + headless. that's just how our tests run; doesn't rule out that it's happening other ways. * likely won't be able...

Confirming this behavior (I'm on the same team @nickgrout). A few additional things I can add in the hopes they are useful: 1. error + stacktrace I'm seeing is identical...

> I have passed this along to our support team who will be reaching out to help you narrow down this issue sounds great thanks! > this is related to...

One quick additional note: we _may_ have narrowed down the crash to coming from `cy.intercept()`. Is this something you my have seen before? We're currently confirming if changing our use...

Updates * Adjusting/narrowing our use of `cy.intercept` does seem to resolve. * We did not notice that some very large requests (fetching JS bundles) were being intercepted, and that _seemed_...

@lambertsj sure! we had a very broad `cy.intercept`, something like this: ```typescript cy.intercept(VERY_BROAD_REGEX, (req) => { // a callback to modify the req headers for auth purposes }); ``` this...

@nagash77 no it's not separate. upon closer inspection, we realized that the behavior we were seeing did not exactly line up with some of the other activity in this thread,...