npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@selfage/puppeteer_test_executor

v5.2.0

Published

Execute bundled JS file with extra global functions exposed by Puppeteer

Downloads

160

Readme

@selfage/puppeteer_test_executor

Install

npm install @selfage/puppeteer_test_executor

Overview

Written in TypeScript and compiled to ES6 with inline source map & source. See @selfage/tsconfig for full compiler options. Provides an executor which launches a single browser page via Puppeteer, exposes helper functions for testing to browser context/window scope, and executes a single/bundled JS file in that page.

Puppeteer is a Node library which provides a high-level API to control Chrome or Chromium over the DevTools Protocol.

Executing a JS file

You can use the CLI e.g. $ npx pexe file/to/be/run/in/browser.js -b base/dir. See below for detailed options.

$ npx pexe -h
Usage: main [options] <binFile> [pass-through-args...]

Execute the presumably bundled JavaScript file in your Chrome browser. Requires the environment variable "CHROME" which   
points to your Chrome browser's exectuable path. The file ext can be neglected and is always fixed as .js. "--" is needed 
in between <binFile> and pass through arguments.

Options:
  -b, --base-dir <baseDir>  The base directory that all loaded files/resources should be relative to, from which all      
                            static files are being served in the server. If not provided, it will be the current working  
                            directory.
  -p, --port <port>         The port number to start your local server. Default to 8000.
  -nl, --no-log-to-console  Turn off logging browser logs to console.
  -nh, --no-headless        Turn off running the browser in headless mode.
  -h, --help                display help for command

Or use programmatical API as below.

import { execute, OutputCollection } from '@selfage/puppeteer_test_executor';

// Runs in Node context.
let outputCollection: OutputCollection = execute(
  'file/to/be/run/in/browser.js',
  'base/dir',
  /* outputToConsole= */ true,
  /* port= */ 8080,
  /* argv= */ ['--case', 'AssertAddition']);
outputCollection.log; // Array<string>
outputCollection.warn; // Array<string>
outputCollection.error; // Array<string>
outputCollection.other; // Array<string>

As a prerequisite, you need a JS file that's meant to be run in browser context, which contains everything needed to render a page/perform whatever actions. It can be a bundled file using bundlers such as browserify, or a bootstrap file that loads other files.

The execute() function or the CLI will start a local Node server, embed the JS file into a temporary HTML file, and launch Puppeteer to navigate to that HTML file. When outputToConsole is true, it logs browser logs to Node console. Returned outputCollection will always collect all logs from the browser. pass-through-args or argv argument are made available to the JS file as a global variable.

The full JS file path in the example is ./base/dir/file/to/be/run/in/browser.js which is split into two parts: a base directory and a relative path. You might just want to use '.', which is the default, as the base directory. However the base directory is where all static files are being served from. E.g. if the JS file loads an image with src='/path/to/image.jpg', the server will try to find it at ./base/dir/path/to/image.jpg.

Note that, normally a browser page won't exit by itself even if everything have been executed, so execute() or the CLI will never resolve/return. The solution is to call exit() from the JS file.

JS file in browser context

The JS file executed by the way above runs in browser context, i.e. having access to window and DOM tree.

Helper functions

A set of helper functions are provided to global/window thanks to the magic exposeFunction(). They are able to interact with browser itself and access files directly from file system. Install @selfage/puppeteer_test_executor_api for quick access to those functions.

E.g., normally a browser page won't close/exit at all even if everything has been executed, because it's waiting for user to interact with the page. However, if you are running tests, and want to close the browser after all tests are done. You can call the exit() function like below.

import { exit } from "@selfage/puppeteer_test_executor_api";

// ... other stuff to do
exit(); // The browser is now being exited/closed.

See apis.ts for all available functions.

Argv

import { getArgv } '@selfage/puppeteer_test_executor_api';

console.log(getArgv()); // ['--case', 'AssertAddition']

If you have executed the JS file with an argv argument or [pass-through-args...], the value, which is of type Array<string>, can then be accessed in the JS file by getArgv(). It's intended to be used just as command line arguments as if it's an exetuable JS file used in Node CLIs.