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

selenium-until-extra

v0.2.4

Published

A package providing extra bindings for Selenium 'until' conditions'

Readme

selenium-until-extra

NPM NPM

A library that add some extra methods to selenium-webdriver's until module.

Motivation

I was writing my personal project using selenium-webdriver and I needed some extra conditions to wait upon. So I've opened the issue on Selenium's GitHub to add this methods, and apparently they don't want to add it. So I decided to make a library that implement some extra functionality and make it open source.

API

Just require('selenium-until-extra') instead of using selenium-webdriver's until. Like that:

const { Builder, By } = require('selenium-webdriver');
const until = require('selenium-until-extra');

The selenium-until-extra library exports all the Selenium until methods and adds some more:

  • until.urlIsNot(url) - waits for URL not to be equal to url
  • until.urlNotContains(substring) - waits for URL not to contain substring
  • until.urlNotMatches(regex) - waits for URL not to match regex
  • until.titleIsNot(title) - waits for title not to be equal to title
  • until.titleNotContains(substring) - waits for title not to contain substring
  • until.titleNotMatches(regex) - waits for URL title to match regex
  • until.pageContainsText(text) - waits for page to contain text
  • until.pageNotContainsText(text) - waits for page not to contain text

This list will most likely be increased in the future.

Contribution

All issues and PRs are welcomed and appreciated! When submitting an issue, please provide as more details as possible, such as:

  • bug details and how to reproduce it
  • your OS, node and library versions

When submitting the PR, please keep this in mind:

  • we are using ESLint, the static code analyzer, to keep the code style consistent. Please make sure that your PR matches that code style by using npm run lint, if it shows no errors, then everything's fine. You can also use npm run lint:fix to auto-fix some issues.
  • we have an automated testing, so please make sure all the tests pass before making a PR and if you want to add some extra functions to the library, please write tests for it.
  • you can be asked to refactor/improve/rebase your PR.

If you want to suggest something new, you can make an issue about that, and we'll figure that out!