marionette-marker

A marionette plugin for marking elements and click events.

Usage no npm install needed!

<script type="module">
  import marionetteMarker from 'https://cdn.skypack.dev/marionette-marker';
</script>

README

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();
});