Access the href attribute using invoke() in each() Cypress
P粉231112437
P粉231112437 2023-12-12 09:41:00
0
2
562

I am new to Cypress and I am trying to use invoke() to access the href attribute of each div tag from the group but it is giving an error. Can anyone suggest you how to do this?

cy.get('.bms-scoreboard__game-tile--mls').each(($el,index,$list) => {
            $el.get('a')
                .invoke('attr','href')
                .then(href => {
                    cy.request(href)
                        .its('status')
                        .should('eq',200)
                })
        })

P粉231112437
P粉231112437

reply all(2)
P粉276577460

$el is a JQuery element, not itself in the Cypress chain. You need to use cy.wrap() to use it in a Cypress chain.

cy.get('.bms-scoreboard__game-tile--mls').each(($el,index,$list) => {
            cy.wrap($el)
                .get('a')
                .invoke('attr','href')
                .then(href => {
                    cy.request(href)
                        .its('status')
                        .should('eq',200)
                })
        })
P粉359850827

I think .get() is inappropriate - it only works for <body>, not for every '.bms-scoreboard__game-tile-- mls'.

Try using .find() instead of

Using jQuery operators

cy.get('.bms-scoreboard__game-tile--mls')
  .each(($el,index,$list) => {
    const href = $el.find('a').attr('href')
    cy.request(href)
      .its('status')
      .should('eq', 200)
  })
})

Or work with Cypress operators

cy.get('.bms-scoreboard__game-tile--mls')
  .each(($el,index,$list) => {
    cy.wrap($el).find('a')
      .invoke('attr','href')
      .then(href => {
        cy.request(href)
           .its('status')
           .should('eq',200)
      })
  })
})

Or move "Find" to the first selector

cy.get('.bms-scoreboard__game-tile--mls a')
  .each($a => {
    const href = $a.attr('href')
    cy.request(href)
      .its('status')
      .should('eq', 200)
  })
})
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template