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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@jsxtools/playwright-utils

v0.1.0

Published

A collection of utilities for extending Playwright with custom functionality and enhanced type safety.

Readme

@jsxtools/playwright-utils

A collection of utilities for extending Playwright with custom functionality and enhanced type safety.

Features

  • Extension Creation: Create custom Playwright test extensions with additional fixtures.
  • Locator Registration: Register custom selector engines with enhanced locator methods.
  • Type Safety: Enhanced TypeScript types for better development experience.

Installation

npm install @jsxtools/playwright-utils

Usage

Creating Extensions

Use createExtension to create custom test extensions with additional fixtures:

import { createExtension } from '@jsxtools/playwright-utils';

const { extend, test } = createExtension<{ customPage: Page }>({
  customPage: async ({ page }, use) => {
    // Add custom setup logic
    await page.goto('https://example.com');
    await use(page);
    // Add custom teardown logic
  },
});

// Use the extended test
test('my test', async ({ customPage }) => {
  await customPage.click('button');
});

Registering Custom Locators

Use registerLocator to add custom selector engines with additional methods:

import { registerLocator } from '@jsxtools/playwright-utils';

await registerLocator(
  'my-selector',
  page,
  () => ({
    query: (root, selector) => {
      // Custom selector logic
      return root.querySelector(selector);
    },
    queryAll: (root, selector) => {
      // Custom selector logic
      return Array.from(root.querySelectorAll(selector));
    },
  }),
  {
    // Additional methods to add to locators
    customMethod(this: Locator): Locator {
      return this.locator('custom-selector');
    },
  }
);

API Reference

createExtension<T, W>(fixtures)

Creates a new test extension with custom fixtures.

Parameters:

  • fixtures: Playwright fixtures object defining additional test and worker fixtures

Returns:

  • extend: Function to extend a base test with the fixtures
  • test: Pre-extended test instance ready to use

registerLocator(name, page, selectorScript, additionalMethods?)

Registers a custom selector engine and patches locator methods.

Parameters:

  • name: Name of the selector engine
  • page: Playwright page instance
  • selectorScript: Function returning the selector engine implementation
  • additionalMethods: Optional object with additional methods to add to locators

Returns:

  • Promise<void>: Resolves when the selector is registered

Re-exported APIs

The following Playwright APIs are re-exported for convenience:

  • devices: Browser device configurations
  • expect: Playwright expect assertions
  • request: API request utilities
  • selectors: Selector engine utilities

Types

Enhanced TypeScript types are available:

  • Extension<T, W>: Type for test extensions
  • TestType<T, W>: Enhanced test type with custom fixtures
  • Page<Locator>: Enhanced page type with custom locator support
  • Locator: Enhanced locator type with additional methods
  • BrowserContext: Re-exported browser context type
  • Fixtures: Re-exported fixtures type

License

MIT-0