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

crossbrowsertesting-browser-provider-testcafe

v1.0.1

Published

crossbrowsertesting TestCafe browser provider plugin.

Downloads

20

Readme

crossbrowsertesting-browser-provider-testcafe

This plugin integrates TestCafe with the CrossBrowserTesting Cloud.

Install

npm install testcafe-browser-provider-crossbrowsertesting

Usage

Before using this plugin, save the CrossBrowserTesting username and auth key to environment variables CBT_TUNNELS_USERNAME and CBT_TUNNELS_AUTHKEY.

Setting Environment Variables for Mac OS X/Linux

In Terminal mode, enter vi ~/.bash_profile, and then press Enter. Press i to insert text into your profile file. Enter these lines:

export CBT_TUNNELS_USERNAME="your crossbrowsertesting username/email address"
export CBT_TUNNELS_AUTHKEY="your crossbrowsertesting auth key"

Press Escape. Hold Shift and press Z twice (z z) to save your file and quit vi. In the terminal, enter source ~/.bash_profile.

Check available browsers

You can determine the available browser aliases by running

testcafe -b crossbrowsertesting

Run tests

When you run tests from the command line, use the alias when specifying browsers:

testcafe "crossbrowsertesting:Internet Explorer@11:Windows 10" "path/to/test/file.js"

When you use API, pass the alias to the browsers() method:

testCafe
    .createRunner()
    .src('path/to/test/file.js')
    .browsers('crossbrowsertesting:Internet Explorer@11:Windows 10')
    .run();

Configuration

Use the following environment variables to set additional configuration options:

  • CBT_BUILD - Number of the build within your test to get a high-level view of build performance.
  • CBT_RECORD_VIDEO - Start a video recording of your screen during the test session. (max length 10 minutes)
  • CBT_RECORD_NETWORK - Start a recording of your network packets during the test session.
  • CBT_MAX_DURATION - By default, a test will have a maximum run time of 600 seconds (10 minutes). If you need more time you can change that by passing the max_duration capability along with a value.The highest value is 14400 seconds (4 hours). More details
  • CBT_CHROME_ARGS - Extra arguments to pass to Chrome. e.g. --autoplay-policy=no-user-gesture-required

Author

PeerWell Open Source (forked from Sijo Cheeran (https://synacor.com))