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

.selenide-full-screenshot.7.5.0.source-code.get-screen-size.js Maven / Gradle / Ivy

(() => {
  const fullWidth = Math.max(document.body.scrollWidth, document.documentElement.scrollWidth, document.body.offsetWidth, document.documentElement.offsetWidth, document.body.clientWidth, document.documentElement.clientWidth);
  const fullHeight = Math.max(document.body.scrollHeight, document.documentElement.scrollHeight, document.body.offsetHeight, document.documentElement.offsetHeight, document.body.clientHeight, document.documentElement.clientHeight);
  const viewWidth = window.innerWidth;
  const viewHeight = window.innerHeight;
  const exceedViewport = fullWidth > viewWidth || fullHeight > viewHeight;
  return {fullWidth, fullHeight, exceedViewport};
})()




© 2015 - 2024 Weber Informatics LLC | Privacy Policy