14 lines
421 B
JavaScript
14 lines
421 B
JavaScript
const { scrapePage } = require("./lib/puppeteer");
|
|
const path = require("path");
|
|
|
|
(async () => {
|
|
const testUrl = "https://richard.dern.ovh";
|
|
const screenshotPath = path.join(__dirname, "test_screenshot.png");
|
|
|
|
console.log(`🔍 Testing Puppeteer module on: ${testUrl}`);
|
|
const metadata = await scrapePage(testUrl, screenshotPath);
|
|
|
|
console.log("📄 Page metadata:");
|
|
console.log(metadata);
|
|
})();
|