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

nightmare-real-mouse

v1.1.0

Published

A Nightmare plug-in for better mimicking true mouse events

Downloads

192

Readme

nightmare-real-mouse

Greenkeeper badge

An experimental Nightmare plugin for triggering true mouse events in the browser (instead of simulated ones as Nightmare currently does).

Example usage:

const Nightmare = require('nightmare');
const realMouse = require('nightmare-real-mouse');

// add the plugin
realMouse(Nightmare);

nightmare
  .goto('http://yahoo.com')
  .type('form[action*="/search"] [name=p]', 'github nightmare')
  // use realClick() instead of click()
  .realClick('form[action*="/search"] [type=submit]')
  .wait('#main')
  .evaluate(function () {
    return document.querySelector('#main .searchCenterMiddle li a').href
  })
  .end()
  .then(function (result) {
    console.log(result)
  })
  .catch(function (error) {
    console.error('Search failed:', error);
  });

Installation

Install from NPM!

npm install nightmare-real-mouse

And then use in your Nightmare scripts:

const Nightmare = require('nightmare');
require('nightmare-real-mouse')(Nightmare);

API

The plugin provides three methods that are alternatives to those built into Nightmare:

realClick(selector, [position])

Click on the element with the specified selector. Note that, because this is a real mouse event, the click won’t actually happen directly on the specified element if it is obscured by some other element (instead, it will happen on the element that is visually "in front").

The actual location of the click can be specified with the second argument, position, which should be an object with x and y properties that are numbers. They represent offsets from the top/left corner of the element specified by selector. If unspecified, the position will be the center of the element.

Issuing two realClick() calls within 300ms of each other on the same element will additionally trigger a dblclick event.

Example:

// Click the top-left corner of the "I'm Feeling Lucky" button on Google
Nightmare()
  .goto('https://google.com')
  .realClick('input[value*="Lucky"]', {x: 1, y: 1})
  .then(() => console.log('Clicked “I’m Feeling Lucky!”'));

realMouseover(selector, [position])

Fires mouseover and mouseenter events on the given selector. This will also fire the relevant mouseout and mouseleave events on elements that the mouse was previously over, if any.

Like realClick(), the optional position argument is an object with x and y properties specifying the location of the event inside the element. If unspecified, the location will be the center of the element.

realMousedown(selector, [position])

Fires the mousedown event on the given selector. It will also cause mouseover and mouseenter events on the element and mouseout and mouseleave events on whatever element the mouse was over if the mouse is not already over the element.

Like realClick(), the optional position argument is an object with x and y properties specifying the location of the event inside the element. If unspecified, the location will be the center of the element.

License

Nightmare-real-mouse is open source software. It is (c) 2016 Rob Brackett and licensed under the BSD license. The full license text is in the LICENSE file.