79144332

Date: 2024-10-31 10:28:20
Score: 0.5
Natty:
Report link

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'});
  },
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: E.Swallow