Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

121
Vistas
How to check all links in cypress without stopping in case of an error

So basicly I have to test many many links on many many sites so I want to write a quite general code. In this case its just checking in the main section on purpose.

it('check all links in main', () => {

    cy.visit('/')
    cy.get("main").within(() => {
        cy.get("a").each(page => {
            cy.request(page.prop('href'))
        })
    })
});

This is checking all links but only as long as there are no errors. I want it to run through the whole page and just log out for every link if it works or not. Its not supposed to stop after the first error.

about 4 years ago · Juan Pablo Isaza
2 Respuestas
Responde la pregunta

0

It looks like you are looking for the failOnStatusCode option

cy.get("a").each(page => {
  const link = page.prop('href')
  cy.request({
    url: link,
    failOnStatusCode: false  // allow good and bad response to pass into then
  }).then(response => {
    Cypress.log({
      name: link,
      message: response.status
    })
  })
})
about 4 years ago · Juan Pablo Isaza Denunciar

0

Try putting your request in a .then()instance.

it('check all links in main', () => {

    cy.visit('/')
    cy.get("main").within(() => {
        cy.get("a").each(a => {
           cy.get(a).then((page) => {
           cy.request(page.prop('href'), {failOnStatusCode: false})
           cy.request({url: page.prop('href'), failOnStatusCode:false, })
           })
        })
    })
})
about 4 years ago · Juan Pablo Isaza Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda