update screenshot
This commit is contained in:
parent
13b4f6f7f6
commit
2c3114fdc1
|
|
@ -2,14 +2,17 @@ const puppeteer = require("puppeteer");
|
|||
|
||||
(async () => {
|
||||
// Launch a headless browser
|
||||
const browser = await puppeteer.launch();
|
||||
const browser = await puppeteer.launch({
|
||||
headless: true,
|
||||
args: ["--no-sandbox"],
|
||||
});
|
||||
|
||||
// Open a new page
|
||||
const page = await browser.newPage();
|
||||
await page.goto(
|
||||
"https://logs.danielvu.com/screenShot/20230913-TEST01-Session.Port4-6-172.16.20.7.log"
|
||||
);
|
||||
const bodyHandle = await page.$('body');
|
||||
const bodyHandle = await page.$("body");
|
||||
const { height } = await bodyHandle.boundingBox();
|
||||
await bodyHandle.dispose();
|
||||
await page.setViewport({ width: 1920, height: 500 });
|
||||
|
|
@ -98,8 +101,6 @@ const puppeteer = require("puppeteer");
|
|||
|
||||
// send();
|
||||
|
||||
|
||||
|
||||
// Usage example
|
||||
// const filePath = __dirname+'\\screenshot.png';
|
||||
// uploadFileToZulip(filePath);
|
||||
|
|
|
|||
Loading…
Reference in New Issue