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-simple-protractor

v1.0.5

Published

A simple protractor task for grunt

Downloads

7

Readme

grunt-simple-protractor

Build Info Dev Dependencies Coverage Info Npm Version Npm Downloads

A simple protractor task for grunt. It automates much of the process of running E2E protractor tests.

The task starts webdriver and a local server automatically before protractor starts, and closes the servers when protractor finishes.

Basic Usage

First install the task:

npm install grunt-simple-protractor

Update webdriver:

./node_modules/grunt-simple-protractor/node_modules/.bin/webdriver-manager update --standalone

And then include your tests in your Gruntfile.js:

module.exports = function(grunt) {
  grunt.initConfig({
    protractor: {
      your_target: {
        options: {
          specs: ['test/e2e/*.js']
        }
      }
    }
  })

  grunt.loadNpmTasks('grunt-simple-protractor')
  grunt.registerTask('default', ['protractor'])
}

If you run into problems, run grunt with the --stack and/or --debug flags to debug further.

How It Works

This task will automatically run webdriver by default. It will also create a local server to serve your web app. The base directory or your app (where your Gruntfile.js is located) is the base directory of the local server.

Both servers will close when protractor finishes, which makes it very useful for continuous integration environments. Protractor does support directConnect, but it does not always work, and it definitely does not work for all browsers, such as the headless browser PhantomJS.

Automating WebDriver

If you don't want to automate webdriver, you can set autoWebdriver to false. If you start webdriver manually, you need to close it when grunt finishes.

You can send a SIGINT signal to the selenium process to gracefully exit: kill -s SIGINT seleniumProcess.pid. You would probably also need to fork your shell process so that you can run both the protractor and webdriver process simultaneously. That's why autoWebdriver is set to true by default -- it's much simpler.

Options

The options are taken from the protractor command line options with a few additions for the task. If you want to use protractor options that are not listed here, supply a protractor configuration file using configFile.

runAsync
Type: Boolean, Default: false

Run the task asynchronously. The event will emit an event called protractor that sends the error and result from grunt.util.spawn when webdriver or protractor are run. In order to complete the task and close the servers, the finish function needs to be called. Here is an example:

grunt.event.on('protractor', function(error, result, finish) {
  grunt.log.write(result)
  finish()
})

autoLocalServer
Type: Boolean, Default: true

Run a local server. The local server is closed after protractor finishes.

localServerPort
Type: Number, Default: 8080

The server port for the local server.

autoWebdriver
Type: Boolean, Default: true

Run webdriver automatically. Webdriver is closed after protractor finishes.

debugWebdriver
Type: Boolean, Default: false

Display webdriver output for debugging purposes. In order for this to take effect, autoWebdriver must be set to true.

nodeBinary
Type: String, Default: 'node'

The path of the node binary.

configFile
Type: String

The path of a configuration file to use for protractor. Any options explicitly passed in will override values from this file.

browser
Type: String

Browsername, e.g. chrome or firefox.

seleniumAddress
Type: String

A running selenium address to use.

seleniumPort   Type: Number

Optional port for the selenium standalone server.

baseUrl
Type: String

URL to prepend to all relative paths.

rootElement
Type: String

Element housing ng-app, if not html or body.

specs
Type: [String]

Comma-separated list of files to test.

verbose
Type: Boolean, Default: false

Print full spec names.

framework
Type: String, Default: 'jasmine'

Test framework to use: jasmine, cucumber or mocha.

resultJsonOutputFile
Type: String

Path to save JSON test result.

troubleshoot
Type: Boolean, Default: false

Turn on troubleshooting output.

Contributing

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

Issues

See the project's issue page for more details.

Release History

  • v1.0.5   03.21.2015   Updated README and added more verbose output
  • v1.0.3   02.27.2015   Updated README
  • v1.0.2   02.26.2015   Fixed error in README
  • v1.0.0   02.25.2015   Initial release

License

Copyright (c) 2015 Risto Stevcev. Licensed under the MIT license.