How to Take a SharePoint full Page Screenshot Using Microsoft Edge

Did you know that Microsoft Edge has a built-in feature to take screenshots of web pages? You can easily capture a full-page image of any web page with just a few clicks. However, there is a catch: this feature only works well if the scroll is in the body element of the web page. Unfortunately, this is not the case for SharePoint pages, as the scroll is placed in a different element. This means that the screenshot feature will only capture the visible part of the browser window, and not the entire SharePoint page.

But don’t worry, there is a workaround for this problem. In this blog post, I will show you how you can use a simple JavaScript bookmarklet to modify the SharePoint page and move the scroll to the body element. This way, you can use the screenshot feature of Microsoft Edge to get your full-page SharePoint images.

SharePoint full page screenshot

How to create the bookmarklet

A bookmarklet is a small piece of code that you can save as a bookmark in your browser and run on any web page. To create the bookmarklet that we need, follow these steps:

  1. Press CTRL + SHIFT + O to manage Microsoft Edge bookmarks
  2. Click on Open Favourites Page
  3. Click on Add Favourite
  4. Provide a name for it, such as SharePoint Screenshot
  5. In the URL field, paste the following code:
    javascript:(function(){var contentRegionHeight=document.querySelectorAll('[data-automation-id="contentScrollRegion"]')[0].clientHeight,scrollRegionHeight=document.querySelectorAll('[data-automation-id="contentScrollRegion"]')[0].scrollHeight,windowHeight=window.innerHeight,headerHeight=windowHeight-contentRegionHeight,bodyHeight=scrollRegionHeight+headerHeight;document.querySelectorAll('[data-automation-id="contentScrollRegion"]')[0].style.overflow="hidden",document.body.style.height=bodyHeight+"px",document.body.style.overflow="auto";}());
  6. Click on Save
    SharePoint full page screenshot

How to use the bookmarklet

Now that you have created the bookmarklet, you can use it to take your full-page SharePoint screenshot using Microsoft Edge. To do that, follow these steps:

  1. Open the SharePoint page you want to grab
  2. Scroll to the bottom of the page to make sure all the web parts are loaded in the page
  3. Click on the bookmark you added to your browser to switch the position of the scroll
  4. Press CTRL + SHIFT + S on Windows or COMMAND + SHIFT + S on Mac OS to open the screen capture tool
  5. Click on Capture Full Page

You will see a preview of your full-page screenshot, which you can save, copy, or share as you wish.

Conclusion

From now on, every time you need to take a full page screenshot of SharePoint, you just need to click on the bookmarklet and use the Edge screen capture tool.

Please note that this uses DOM manipulation, and it might stop working if Microsoft changes the SharePoint pages. If this is no longer working for you, let me know in the comment section and I’ll try to fix it ASAP. If you want to try to fix it yourself here is the uncompressed version of the JavaScript that I built to change the position of the scroll.

var contentRegionHeight = document.querySelectorAll('[data-automation-id="contentScrollRegion"]')[0].clientHeight;

var scrollRegionHeight = document.querySelectorAll('[data-automation-id="contentScrollRegion"]')[0].scrollHeight;

var windowHeight = window.innerHeight;

var headerHeight = windowHeight - contentRegionHeight;

var bodyHeight = scrollRegionHeight + headerHeight;

document.querySelectorAll('[data-automation-id="contentScrollRegion"]')[0].style.overflow = "hidden";

document.body.style.height = bodyHeight+'px';

document.body.style.overflow = "auto";


4 Responses to “How to Take a SharePoint full Page Screenshot Using Microsoft Edge”

    • João Ferreira

      February 7, 2024

      You have always the best solutions Stefan.
      Thanks for sharing. 😉

      Reply
  1. Suzi

    March 5, 2024

    Thank you for taking the time to do this!

    I looked at the native ‘solution’ given by Stefan Bauer but it was way more complex than this simple solution.

    Thank you João!

    Reply
    • João Ferreira

      March 7, 2024

      Thank you Suzy,

      I appreciate your feedback, if the solution provided in this article stops working let me know and I’ll try to get it updates ASAP.

      Have a nice day 🙂

      Reply

Leave a Reply


I've been working with Microsoft Technologies over the last ten years, mainly focused on creating collaboration and productivity solutions that drive the adoption of Microsoft Modern Workplace.

%d bloggers like this: