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) }) })
$el
is a JQuery element, not itself in the Cypress chain. You need to usecy.wrap()
to use it in a Cypress chain.I think
.get()
is inappropriate - it only works for<body>
, not for every'.bms-scoreboard__game-tile-- mls'
.Try using
.find()
instead ofUsing jQuery operators
Or work with Cypress operators
Or move "Find" to the first selector