All Downloads are FREE. Search and download functionalities are using the official Maven repository.

s.eyes-selenium-java4.4.14.0.source-code.capturecssom.js Maven / Gradle / Ivy

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