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

grunt-webdriver-qunit

v0.2.6

Published

grunt-webdriver-qunit is a grunt plugin to run qunit with webdriver in grunt

Downloads

41

Readme

grunt-webdriver-qunit Build Status

run qunit with webdriver on grunt

Getting Started

This plugin requires Grunt ~0.4.1

If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:

npm install grunt-webdriver-qunit --save-dev

Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:

grunt.loadNpmTasks('grunt-webdriver-qunit');

The "webdriver_start" task

Overview

In your project's Gruntfile, add a section named webdriver_start to the data object passed into grunt.initConfig().

grunt.initConfig({
  webdriver_start: {
    options : {
      jar: '<selenium_jar_path>',
      port: '<selenium_port>',
      jvmArgs: '<jvm_args>',
      args: '<java_args>',
      env: '<environment>'
      stdio: '<stdio>'
    }
    },
})

Options

options.jar

Type: String Default value: null

The path of selenium server standalone jar.

options.port

Type: Integer Default value: 4444

The port of selenium server standalone.

options.jvmArgs

Type: String Default value: null

The jvm arguments.

options.args

Type: String Default value: null

The java arguments.

options.env

Type: String Default value: null

The environment arguments.

options.stdio

Type: String Default value: null

The "webdriver_qunit" task

Overview

In your project's Gruntfile, add a section named webdriver_qunit to the data object passed into grunt.initConfig().

grunt.initConfig({
  webdriver_qunit: {
    options: {
      reportsDir: '<reports_directory>',
      qunitJson: '<qunit_config>',
      baseUrl: '<base_url>',
      seleniumUrl: '<selenium_url>',
    },
    firefox: {
      options: {
        browserNames: '<browser_names>',
      }
    },
  },
})

options.browserNames

Type: Array Default value: ['phantomjs']

The browser names, the value is the array of phantomjs, chrome, firefix, ie, safari.

options.reportsDir

Type: String Default value: target/surefire-reports

The reports directory.

options.qunitJson

Type: String Default value: null

The configuration file of qunit.

options.baseUrl

Type: String Default value: null

The base url of tests.

options.seleniumUrl

Type: String Default value: http://localhost:4444/wd/hub. If webdriver_start given, this option ignore, will using the local selenium to testing. Otherwise, will using the external selenium to testing.

The selenium url.

Usage Examples

In this example, first start selenium server, then run qunit testing with webdriver. Please download chromedriver, phantomjs and IEDriverServer, SafariDriver then put them into PATH.

#Gruntfile.js
grunt.initConfig({
  webdriver_start: {
    options : {
      port: '4444',
    }
  },
  webdriver_qunit: {
    linux: {
      options: {
        browserNames: ['phantomjs', 'chrome', 'firefox', 'ie', 'safari'],
        reportsDir: 'target/surefire-reports',
        qunitJson: '../test/qunit.json',
        baseUrl: 'http://localhost:8000',
      }
    },
  },
  grunt.loadNpmTasks('grunt-webdriver-qunit');
  grunt.registerTask('test', ['webdriver_startup', 'webdriver_qunit']);
})
#qunit.json
{
  "baseUrl" : "http://localhost",
  "waitSeconds" : 10,
  "tests" : [{
    "path" : "/test/index.html",
    "waitSeconds" : 20
  }]
}

Contributing

In lieu of a formal style guide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using Grunt.

Release History

  • 2013-10-12 v0.2.5 fix the download selenium bug.
  • 2013-10-12 v0.2.4 auto download selenium when install this plugin.
  • 2013-09-28 v0.2.3 support selenium grid.
  • 2013-09-28 v0.2.2 update selenium default jar path.
  • 2013-09-28 v0.2.1 fix document and upgrade plugin.
  • 2013-09-28 v0.2.0 add support external selenium.
  • 2013-07-05 v0.1.2 fix bug about timeout.
  • 2013-07-01 v0.1.1 update report path, make them same with test path.
  • 2013-07-01 v0.1.0 first release, test pass on linux and windows.
  • 2013-06-29 v0.0.4 initial this project.