Skip to content

Instantly share code, notes, and snippets.

let gaScriptStripped = false;
Cypress.on('window:before:load', function(win) {
let createElement = win.document.createElement;
win.document.createElement = function(tag) {
if (tag === 'script' && win.document.currentScript.innerHTML.includes('google-analytics.com')) {
tag = 'custom_script';
gaScriptStripped = true;