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

testcafe-browser-provider-testingbot

v1.0.1

Published

testingbot TestCafe browser provider plugin.

Downloads

11

Readme

testcafe-browser-provider-testingbot

Build Status

This plugin integrates TestCafe with the TestingBot Testing Cloud.

Install

npm install testcafe-browser-provider-testingbot

Usage

Before you can use this plugin, you will need to get the TestingBot key and secret from the TestingBot member area. Once you have these two credentials, add these as environment variablesTB_KEY and TB_SECRET.

You can determine the available browser aliases by running

testcafe -b testingbot

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

testcafe "testingbot:chrome@83:WIN10" 'path/to/test/file.js'

If you'd like to run a test on multiple browsers, simultaneously:

testcafe "testingbot:chrome@83:WIN10","testingbot:firefox@79:CATALINA" '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('testingbot:chrome@83:WIN10')
    .run();

Configuration

Use the following environment variables to set additional configuration options:

  • TB_TEST_NAME - the text that will be displayed as Test Name on TestingBot.

  • TB_BUILD - the text that will be displayed as Build Name on TestingBot.

  • SELENIUM_CAPABILITIES - path to a file which contains a JSON formatted object with the capabilities you want to use.

  • TB_CI_MODE - set this variable to 1 when you are using this plugin in a CI context with a TestingBot CI plugin.

  • TB_SCREEN_RESOLUTION - allows setting the screen resolution for desktop browsers in the ${width}x${height} format, has no effect when specified for a mobile browser.

  • SELENIUM_HEARTBEAT - this plugin will by default send a heartbeat every 8 seconds, to keep the WebDriver session open. Use this variable to change this interval.

Example:

export TB_SCREEN_RESOLUTION="1920x1080"
export TB_TEST_NAME="E2E TestCafe"
export TB_BUILD="Build 42"
testcafe testingbot:safari,testingbot:chrome tests/

Selenium Capabilities file

You can use a capabilities.json file which contains a JSON object with capabilities you want to use. Each key in this json file can be used as a parameter. For example, if you have a chrome key in this file, then the following command will send the capabilities for this key to the TestingBot grid:

testcafe testingbot:chrome tests/

Build Plugin Locally (Development Mode)

  1. Clone this repository
  2. Install Packages and Test/Build
$ npm i
$ npm run test
  1. Link Testcafe with this plugin
$ sudo npm link

About TestingBot

TestingBot provides a cloud of +2500 browsers and physical mobile devices. This cloud hosted Selenium grid is 100% compatible with all frameworks and Selenium/Appium bindings. Take advantage of high concurrency selenium testing in the cloud.