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

v3.6.0

Published

Automated browser testing for the modern web development stack.

Downloads

1,005,385

Readme

  • Works on all popular environments: TestCafe runs on Windows, MacOS, and Linux. It supports desktop, mobile, remote and cloud browsers (UI or headless).
  • 1 minute to set up: You do not need WebDriver or any other testing software. Install TestCafe with one command, and you are ready to test: npm install -g testcafe
  • Free and open source: TestCafe is free to use under the MIT license. Plugins provide custom reports, integration with other tools, launching tests from IDE, etc. You can use the plugins made by the GitHub community or create your own.

Install TestCafe and Run a Test

Table of contents

Features

Stable tests and no manual timeouts TestCafe automatically waits for page loads and XHRs before the test starts and after each action. It also features smart test actions and assertions that wait for page elements to appear. You can change the maximum wait time. If elements load faster, tests skip the timeout and continue.

Rapid test development tool When you enable live mode, changes to test code immediately restart the test, and you instantly see the results.

Latest JS and TypeScript support TestCafe supports the most recent JavaScript-related features, including ES2017 (async/await). You can also use TypeScript if you prefer a strongly typed language instead.

Detects JS errors in your code TestCafe reports JS errors that it locates on a given webpage. Tests automatically fail if TestCafe encounters such errors. You can, however, disable this option.

Concurrent test launch TestCafe can open multiple instances of the same browser and run parallel tests (to help decrease test execution time).

PageObject pattern support The TestCafe's Test API includes a high-level selector library, assertions, etc. You can combine them to implement readable tests with the PageObject pattern.

const macOSInput = Selector('.column').find('label').withText('MacOS').child('input');

Easy to include in a continuous integration system You can run TestCafe from a console, and its reports can be viewed within CI systems (TeamCity, Jenkins, Travis & etc.)

Love TestCafe Open-source Edition? Want to Record Tests without Writing JavaScript or TypeScript Code?

TestCafe Studio: IDE for End-to-End Web Testing

TestCafe is the perfect choice for JavaScript developers and experienced Q&A teams. If you’d like to delegate testing to QA engineers and are looking for a code-free way to record and maintain tests compatible with your existing infrastructure, check out TestCafe Studio - a testing IDE built atop the open-source version of TestCafe.

Review the following article to learn how TestCafe Studio can fit into any workflow: What's Better than TestCafe? TestCafe Studio.

Get Started with TestCafe Studio

Getting Started

Installation

Ensure that you run Node.js version 16 or higher, and run the following command:

npm install -g testcafe

Creating the Test

For this simple example, we will test the following page: https://devexpress.github.io/testcafe/example

Create a .js or .ts file on your computer. Remember that a .js or .ts file must maintain a specific structure: tests must be organized into fixtures. You can paste the following code to see the test in action:

import { Selector } from 'testcafe'; // first import testcafe selectors

fixture `Getting Started`// declare the fixture
    .page `https://devexpress.github.io/testcafe/example`;  // specify the start page


//then create a test and place your code within it
test('My first test', async t => {
    await t
        .typeText('#developer-name', 'John Smith')
        .click('#submit-button')

        // Use the assertion to check if actual header text equals expected text
        .expect(Selector('#article-header').innerText).eql('Thank you, John Smith!');
});

Running the Test

Call the following command in a command shell. Specify the target browser and file path.

testcafe chrome test1.js

TestCafe opens the browser and begins test execution.

Important: Make certain the browser tab that runs tests stays active. Do not minimize the browser window. Inactive tabs and minimized browser windows switch to lower resource consumption mode. In low consumption mode, tests may not execute correctly.

Viewing the Results

TestCafe outputs results into a command shell by default. See Reporters for more information. You can also use plugins to customize reports.

Test Report

Read the Getting Started page for additional assistance.

Documentation

Visit the following webpage to review our online help system: Documentation.

Get Help

Join the TestCafe community on Stack Overflow. Ask and answer questions using the TestCafe tag.

Issue Tracker

Use our GitHub issues page to report bugs and suggest enhancements.

Stay in Touch

Follow us on Twitter. We post TestCafe news and updates.

Contributing

Read our Contributing Guide to learn how to contribute to the project.

To create your own plugin for TestCafe, you can use these plugin generators:

If you want your plugin to be listed below, send us a note in a Github issue.

Thanks to all of our contributors – We appreciate your commitment to the TestCafe community.

| | | | | | :---: |:---: |:---: |:---: |:---: |:---: | aha-oretama |ai |aleks-pro |Aleksey28 |AlexanderMoiseev |AlexanderMoskovkin |

| | | | | | :---: |:---: |:---: |:---: |:---: |:---: | alexey-lin |AlexKamaev |alexphilin |AlexSkorkin |alexwybraniec |AnastasiaIvanova8 |

| | | | | | :---: |:---: |:---: |:---: |:---: |:---: | andrewbranch |AndreyBelym |AndyWendt |AnnaKondratova |anthophobiac |Artem-Babich |

| | | | | | :---: |:---: |:---: |:---: |:---: |:---: | Arthy000 |augustomezencio-hotmart |bdwain |benmonro |beyondcompute |bill-looby-i |

| | | | | | :---: |:---: |:---: |:---: |:---: |:---: | bsmithb2 |caseyWebb |cdrini |cgfarmer4 |Chris-Greaves |churkin |

| | | | | | :---: |:---: |:---: |:---: |:---: |:---: | dej611 |DIRECTcut |Dmitry-Ostashev |eignatyev |ericyd |Farfurix |

| | | | | | :---: |:---: |:---: |:---: |:---: |:---: | flora8984461 |GeoffreyBooth |helen-dikareva |honsq90 |infctr |inikulin |

| | | | | | :---: |:---: |:---: |:---: |:---: |:---: | Ivan-Katovich |jamesgeorge007 |jaypea |josephmalam |kanhaiya15 |karolnowinski |

| | | | | | :---: |:---: |:---: |:---: |:---: |:---: | kirovboris |kisrefod |LavrovArtem |link89 |lzxb |macdonaldr93 |

| | | | | | :---: |:---: |:---: |:---: |:---: |:---: | MargaritaLoseva |Marketionist |MatthewNielsen27 |mattkubej |mattmanske |mcjim |

| | | | | | :---: |:---: |:---: |:---: |:---: |:---: | miherlosev |morfey13 |mostlyfabulous |murajun1978 |NickCis |Nuarat |

| | | | | | :---: |:---: |:---: |:---: |:---: |:---: | Ogurecher |PayBas |pgorny |pietrovich |radarhere |raspo |

| | | | | | :---: |:---: |:---: |:---: |:---: |:---: | rbardini |renancouto |rob4629 |rueyaa332266 |sgrillon14 |smockle |

| | | | | | :---: |:---: |:---: |:---: |:---: |:---: | stefanschenk |superroma |sylbru |taiki-fw |testcafe-build-bot |theghostbel |

| | | | | | :---: |:---: |:---: |:---: |:---: |:---: | titerman |tobiasbueschel |varunkumar |VasilyStrelyaev |vitalics |Vla8islav |

| | | | | | :---: |:---: |:---: |:---: |:---: |:---: | wentwrong |b12031106 |danielroe |danieltroger |DevSide |intermike |

| | | | | :---: |:---: |:---: |:---: |:---: | kirillsalikhov |michaelficarra |rr13k |tomashanacek |TrevorKarjanis |

Plugins

TestCafe developers and community members made these plugins:

Different Versions of TestCafe

|   | TestCafe | TestCafe Studio | | ------ |:-------------------------------------------------:|:-----------------------------------------------------------------------:| | No need for WebDriver, browser plugins or other tools | ✓ | ✓ | | Cross-platform and cross-browser out of the box | ✓ | ✓ | | Write tests in the latest JavaScript or TypeScript | ✓ | ✓ | | Clear and flexible API supports ES6 and PageModel pattern | ✓ | ✓ | | Stable tests due to the Smart Assertion Query Mechanism | ✓ | ✓ | | Tests run fast due to intelligent Automatic Waiting Mechanism and Concurrent Test Execution | ✓ | ✓ | | Custom reporter plugins | ✓ | ✓ | | Use third-party Node.js modules in test scripts | ✓ | ✓ | | Integration with popular CI systems | ✓ |  ✓* | | Free and open-source | ✓ |   | | Visual Test Recorder |   | ✓ | | Interactive Test Editor |   | ✓ | | Automatic Selector Generation |   | ✓ | | Run Configuration Manager |   | ✓ | | IDE-like GUI |   | ✓ |

* You can use open-source TestCafe to run TestCafe Studio tests in CI systems.

Badge

Show everyone you are using TestCafe: Tested with TestCafe

To display this badge, add the following code to your repository readme:

<a href="https://github.com/DevExpress/testcafe">
    <img alt="Tested with TestCafe" src="https://img.shields.io/badge/tested%20with-TestCafe-2fa4cf.svg">
</a>

Thanks to BrowserStack

We are grateful to BrowserStack for providing the infrastructure that we use to test code in this repository.

License

Code released under the MIT license.

Creators

Developer Express Inc. (https://devexpress.com)