import { scrollToLoadContent } from "@intuned/browser";
export default async function handler(params, page, context){
// Scroll through entire page content
await page.goto("https://docs.intunedhq.com/docs-old/getting-started/introduction")
await scrollToLoadContent({
source: page,
});
// Now all content is loaded and visible
}