Giter Site home page Giter Site logo

iscialman / nightmare-real-mouse Goto Github PK

View Code? Open in Web Editor NEW

This project forked from mr0grog/nightmare-real-mouse

0.0 1.0 0.0 31 KB

Experimental Nightmare plugin for real mouse events

License: BSD 3-Clause "New" or "Revised" License

JavaScript 100.00%

nightmare-real-mouse's Introduction

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.

nightmare-real-mouse's People

Contributors

greenkeeper[bot] avatar greenkeeperio-bot avatar mr0grog avatar zzzen avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.