0.0.2 • Published 11 years ago

marionette-marker v0.0.2

Weekly downloads
1
License
-
Repository
-
Last release
11 years ago

marionette-marker

A marionette plugin for marking elements and click events.

Usage

Setup marionette-marker in the marionette.

marionette.plugin('marker', require('marionette-marker'));

Show the cursor in the test runner(b2g desktop client).

// Setup in the setup function of tests,
// after you launch an App.
setup(function() {
  client.apps.launch(APP_URL);
  client.apps.switchToApp(APP_URL);
  // wait for the document body to know we're really launched
  client.helper.waitForElement('body');
  client.marker.setupCursor();
});