Im new in cypress, trying to login to my practice web, but I got problem with this gtag. The actual testing with cypress is done (user success login) but there is one error that keeps make this testing failed, does anyone can help me?. this my pic and my cypress code and my config
This is my error pic

describe('Login user', () => {
beforeEach(() => {
cy.viewport(1392, 768)
cy.visit('thiswebcom')
})
it('Login as user', () => {
cy.get('a[href*="/login"]').first().click()
cy.get('#buttonLoginTrack').should('have.text', '\n Login\n ')
const userName = '[email protected]'
const password = 'mypassword'
cy.get('#email').type(`${userName}`)
cy.get('#password').type(`${password}`).type('{enter}')
})
this is my cypress code for login in
module.exports = {
e2e: {
setupNodeEvents(on, config) {
// implement node event listeners here
},
},
};
this is my cypress.config.js file
I tried with blockHosts but no idea how to put it in, thanks