Giter VIP home page Giter VIP logo

Comments (3)

gander avatar gander commented on May 1, 2024 2

Playwright 1.7.0

import {chromium} from 'playwright';
import {writeFile} from 'fs/promises';

(async () => {
    const browser = await chromium.launch();
    const context = await browser.newContext();
    const page = await context.newPage();
    await page.goto('https://en.wikipedia.org/wiki/MHTML');
    const cdp = await context.newCDPSession(page);
    const {data} = await cdp.send('Page.captureSnapshot', {format: 'mhtml'});
    await writeFile('page.mhtml', data);
    await browser.close();
})();

from playwright.

pavelfeldman avatar pavelfeldman commented on May 1, 2024

(link puppeteer/puppeteer#2433)

There is no generic MHTML generation across browsers yet, but you can still opt into using raw CDP as you do in Puppeteer:

'use strict';
const pw = require('playwright');
const fs = require('fs');

(async () => {
  const browser = await pw.chromium.launch();
  const context = await browser.newContext();
  const page = await context.newPage('https://en.wikipedia.org/wiki/MHTML');
  // There is no generic mhtml functionality in WebKit / Firefox atm.
  // Chromium-specific CDP accessor is now on the Browser-level.
  const cdp = await browser.pageTarget(page).createCDPSession();
  const { data } = await cdp.send('Page.captureSnapshot', { format: 'mhtml' });
  fs.writeFileSync('page.mhtml', data);
  await browser.close();
})();

from playwright.

pavelfeldman avatar pavelfeldman commented on May 1, 2024

Closing this for now. Note that it is unlikely that we can make it a part of the cross-browser API due to the lack of MHTML in Firefox. But if you have ideas on how this could be achieved cross-browser yourself, please let us know!

from playwright.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.