Estoy tratando de verificar qué imágenes están rotas: https://the-internet.herokuapp.com/broken_images , encontré todas las imágenes:
await driver.get("https://the-internet.herokuapp.com/broken_images"); let elements = await driver.findElements(By.css(".example>img")); for (const element of elements) { let height = await element.getAttribute("height"); console.log(el); }, pero todas las alturas son iguales, ¿cómo verificar el estado del código?