gecko-dev/testing/marionette/harness
Henrik Skupin b0f3064b89 Bug 1345274 - marionette-harness sdist package misses certificate files. r=ato
test.key and test.cert are data files and should not be located next to the
source code inside a package. Instead move them into their own top-level folder
where they can be included via MANIFEST.in.

MozReview-Commit-ID: 798gnmO8IfW

--HG--
rename : testing/marionette/harness/marionette_harness/runner/test.cert => testing/marionette/harness/marionette_harness/certificates/test.cert
rename : testing/marionette/harness/marionette_harness/runner/test.key => testing/marionette/harness/marionette_harness/certificates/test.key
extra : rebase_source : 2cd2926f917e4a22babe4fb8bebc476efe8c4768
2017-03-08 12:17:43 +01:00
..
marionette_harness Bug 1345274 - marionette-harness sdist package misses certificate files. r=ato 2017-03-08 12:17:43 +01:00
.flake8
MANIFEST.in Bug 1345274 - marionette-harness sdist package misses certificate files. r=ato 2017-03-08 12:17:43 +01:00
README.rst
requirements.txt Bug 1323770 - Marionette should not take screenshots for skipped tests. r=maja_zf 2016-12-21 15:19:40 +01:00
setup.py Bug 1345274 - marionette-harness sdist package misses certificate files. r=ato 2017-03-08 12:17:43 +01:00

README.rst

marionette-harness
==================

Marionette is an automation driver for Mozilla's Gecko engine. It can remotely
control either the UI or the internal JavaScript of a Gecko platform, such as
Firefox. It can control both the chrome (i.e. menus and functions) or the
content (the webpage loaded inside the browsing context), giving a high level
of control and ability to replicate user actions. In addition to performing
actions on the browser, Marionette can also read the properties and attributes
of the DOM.

The marionette_harness package contains the test runner for Marionette, and
allows you to run automated tests written in Python for Gecko based
applications. Therefore it offers the necessary testcase classes, which are
based on the unittest framework.

For more information and the repository please checkout:

- home and docs: https://developer.mozilla.org/en-US/docs/Mozilla/QA/Marionette


Example
-------

The following command will run the tests as specified via a manifest file, or
test path, or test folder in Firefox:

    marionette --binary %path_to_firefox% [manifest_file | test_file | test_folder]

To get an overview about all possible option run `marionette --help`.