Hi all, I just upgrade to cypress 10.11.0, but when I deploy the test to kubernetes pod, it just can't load the page. Here is the error that I have. I tried to destroy that loading request with cy.intercept('https://stats.g.doubleclick.net/*', req => req.destroy()); but it still generate the same error (without the request)
here is the code
Then(/^I am viewing the site from "(.*)"$/, (country) => {
var url;
switch (country) {
case 'Australia':
url = SITE_ENVIRONMENTS.AU;
break;
}
cy.intercept('https://stats.g.doubleclick.net/*', req => req.destroy());
cy.visit('https://gpn_dev:nosuits@dev.gpnotebook.com/'+url);
});