s.eyes-selenium-java4.4.14.0.source-code.capturecssom.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eyes-selenium-java4 Show documentation
Show all versions of eyes-selenium-java4 Show documentation
Applitools Eyes SDK for Selenium Java WebDriver
The newest version!
function extractCssResources() {
return Array.from(document.querySelectorAll('link[rel="stylesheet"],style')).map(el => {
if (el.tagName.toUpperCase() === 'LINK') {
return "href:" + el.getAttribute('href');
} else {
return "text:" + el.textContent;
}
});
}
return extractCssResources();
© 2015 - 2024 Weber Informatics LLC | Privacy Policy