How to use the puppet-strings/wrappers.makeTab function in puppet-strings

To help you get started, we’ve selected a few puppet-strings examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github vinsonchuong / puppet-strings / actions / get-tabs / index.js View on Github external
    return pages.map(page => makeTab(browser, page))
  },
github vinsonchuong / puppet-strings / actions / open-tab / index.js View on Github external
export default async function(
  { puppeteer: { browser } }: Browser,
  url: string,
  options: ?Options
): Promise {
  const page = await browser.newPage()
  const tab = makeTab(browser, page)

  if (options) {
    await navigate(tab, url, options)
  } else {
    await navigate(tab, url)
  }

  return tab
}

puppet-strings

A better interface for common browser automation workflows

MIT
Latest version published 6 months ago

Package Health Score

63 / 100
Full package analysis

Similar packages