Home > marionette_client

marionette_client

Marionette_client is a project mainly written in ..., it's free.

Python client for Marionette

Marionette Client

Marionette is a Mozilla project to enable remote automation in Gecko-based projects, including desktop Firefox, mobile Firefox, and Boot-to-Gecko.

It utilizes the remote-debugger inside Gecko for the transport layer of the Marionette server. The commands the Marionette server will eventually implement are based on Selenium's JSON Wire Protocol, although not all commands are presently implemented, and additional commands will likely be added.

Package Files

  • client.py: This is the Marionette socket client; it speaks the same socket protocol as the Gecko remote debugger.
  • marionette.py: The Marionette client. This uses client.py to communicate with a server that speaks the Gecko remote debugger protocol.
  • selenium_proxy.py: Acts as a remote driver for Selenium test runners. This code translates the Selenium JSON Wire Protocol to the Marionette JSON Protocol. This allows Selenium tests to utilize Marionette.
  • testserver.py: A socket server which mimics the remote debugger in Gecko, and can be used to test pieces of the Marionette client.
  • test_protocol.py: Tests the Marionette JSON Protocol by using testserver.py.
  • test_selenium.py: Tests the Selenium proxy by using testserver.py.

Installation

No special requirements, unless you're using the Selenium proxy, in which case you'll need to install the Selenium Python bindings using:

pip install selenium

Writing Tests Using the Marionette Client

Tests can be written using the Marionette client directly, or by writing Selenium tests and using the Selenium proxy. See test_protocol.py for an example of the former and test_selenium.py for an example of the latter.

Although test_selenium.py uses the Python binding for Selenium, any of the Selenium webdriver clients should be usable with Marionette.

Previous:celerytest