Skip to content

Releases: drudge/n8n-nodes-puppeteer

v0.6.3

29 Aug 16:40
e185bbd
Compare
Choose a tag to compare
  • Adds support for setting the executable path a browser executable to use instead of the bundled Chromium.

Note:

Note that Puppeteer is only guaranteed to work with the bundled Chromium, so use this setting at your own risk.

v0.6.2

05 Aug 04:12
Compare
Choose a tag to compare
  • Add option to allow specifying launch arguments

v0.6.0

09 Jul 01:52
Compare
Choose a tag to compare
  • Adds Get PDF operation

Options

  • File Name: Allows you to specify the filename of the output file.
  • Page Ranges field: Allows you to specify paper ranges to print, e.g. 1-5, 8, 11-13.
  • Scale: Allows you to scale the rendering of the web page. Amount must be between 0.1 and 2
  • Prefer CSS Page Size: Give any CSS @page size declared in the page priority over what is declared in the width or height or format option.
  • Format: Allows you to specify the paper format types when printing a PDF. eg: Letter, A4.
  • Height: Allows you to set the height of paper. You can pass in a number or a string with a unit.
  • Width: Allows you to set the width of paper. You can pass in a number or a string with a unit.
  • Landscape: Allows you to control whether to show the header and footer
  • Margin: Allows you to specify top, left, right, and bottom margin.
  • Display Header/Footer: Allows you to specify whether to show the header and footer.
  • Header Template: Allows you to specify the HTML template for the print header. Should be valid HTML with the following classes used to inject values into them:
    • date: Formatted print date
    • title: Document title
    • url: Document location
    • pageNumber Current page number
    • totalPages Total pages in the document
  • Footer Template: Allows you to specify the HTML template for the print footer. Should be valid HTML with the following classes used to inject values into them:
    • date: Formatted print date
    • title: Document title
    • url: Document location
    • pageNumber Current page number
    • totalPages Total pages in the document
  • Transparent Background: Allows you to hide the default white background and allows generate PDFs with transparency.
  • Background Graphic: Allows you to include background graphics.

v0.5.0

08 Jul 21:44
Compare
Choose a tag to compare
  • Fixes issue that caused Emulate Device to be required
  • Adds option to specify a proxy server when making requests

v0.4.0

25 May 13:44
Compare
Choose a tag to compare
  • Added new options:
    • Page Caching: Allows you to toggle whether pages should be cached when requesting.
    • Headless mode: Allows you to change whether to run browser runs in headless mode or not.
      Stealth mode: When enabled, applies various techniques to make detection of headless Puppeteer harder. Powered by puppeteer-extra-plugin-stealth.

v0.3.1

07 May 17:34
Compare
Choose a tag to compare
  • Adds timeout option.

The new Timeout options allows you to specify the maximum navigation time in milliseconds. You can also pass 0 to disable the timeout entirely.

v0.3.0

07 May 17:22
Compare
Choose a tag to compare
  • First public release