js.elementIsOnScreen.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aquality-selenium Show documentation
Show all versions of aquality-selenium Show documentation
Library around Selenium WebDriver
var rect = arguments[0].getBoundingClientRect();
return (
rect.top >= 0 && rect.left >= 0 && rect.bottom <= (
window.innerHeight || document.documentElement.clientHeight) && rect.right <= (window.innerWidth || document.documentElement.clientWidth)
);
© 2015 - 2024 Weber Informatics LLC | Privacy Policy