You can't use cy.log()
inside a beforeLoad
and onLoad
event handler. Instead you must use Cypress.log()
.
See this page of the documentation
cy.visit('https://teams.microsoft.com', {
onBeforeLoad: (win) => {
Cypress.log({displayName: 'visit', message: '🔄 Page starting to load'});
},