зеркало из https://github.com/mozilla/gecko-dev.git
70 строки
1.8 KiB
ReStructuredText
70 строки
1.8 KiB
ReStructuredText
.. py:currentmodule:: firefox_puppeteer
|
|
|
|
Firefox Puppeteer
|
|
=================
|
|
|
|
`Firefox Puppeteer`_ is a library built on top of the `Marionette Python client`_.
|
|
It aims to make automation of Firefox's browser UI simpler. It does **not**
|
|
make sense to use Firefox Puppeteer if:
|
|
|
|
* You are manipulating something other than Firefox (like Firefox OS)
|
|
* You are only manipulating elements in content scope (like a webpage)
|
|
|
|
Roughly speaking, Firefox Puppeteer provides a library to manipulate each
|
|
visual section of Firefox's browser UI. For example, there are different
|
|
libraries for the tab bar, the navigation bar, etc.
|
|
|
|
.. _Firefox Puppeteer: http://firefox-puppeteer.readthedocs.io/
|
|
.. _Marionette Python client: http://marionette-client.readthedocs.org/
|
|
|
|
Installation
|
|
------------
|
|
|
|
For end-users Firefox Puppeteer can be easily installed as a `Python package`_
|
|
from PyPI. If you want to contribute to the project we propose that you clone
|
|
the `mozilla-central`_ repository and run the following commands::
|
|
|
|
$ cd testing/puppeteer/firefox
|
|
$ python setup.py develop
|
|
|
|
In both cases all necessary files including all dependencies will be installed.
|
|
|
|
.. _Python package: https://pypi.python.org/pypi/firefox-puppeteer
|
|
.. _mozilla-central: https://hg.mozilla.org/mozilla-central
|
|
|
|
|
|
Libraries
|
|
---------
|
|
|
|
The following libraries are currently implemented. More will be added in the
|
|
future. Each library is available from an instance of the FirefoxTestCase class.
|
|
|
|
.. toctree::
|
|
|
|
ui/about_window/window
|
|
ui/deck
|
|
ui/menu
|
|
ui/pageinfo/window
|
|
ui/browser/notifications
|
|
ui/browser/tabbar
|
|
ui/browser/toolbars
|
|
ui/browser/window
|
|
ui/update_wizard/dialog
|
|
ui/windows
|
|
api/appinfo
|
|
api/keys
|
|
api/l10n
|
|
api/places
|
|
api/prefs
|
|
api/security
|
|
api/software_update
|
|
api/utils
|
|
|
|
|
|
Indices and tables
|
|
==================
|
|
|
|
* :ref:`genindex`
|
|
* :ref:`modindex`
|
|
* :ref:`search`
|