Is it possible to verify the status code '200' of a CSS background-image URL using Cypress for image loading validation? Any suggestions on how to accomplish this?
it('Validate displayed images',() => {
cy.get('.logo').each(($el,index,$list) => {
expect($el).to.have.css('background-image','*dynamic url image should be passed*')
})