diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /testing/marionette/puppeteer/firefox/docs/api | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
Diffstat (limited to 'testing/marionette/puppeteer/firefox/docs/api')
7 files changed, 106 insertions, 0 deletions
diff --git a/testing/marionette/puppeteer/firefox/docs/api/appinfo.rst b/testing/marionette/puppeteer/firefox/docs/api/appinfo.rst new file mode 100644 index 000000000..e3e9842bf --- /dev/null +++ b/testing/marionette/puppeteer/firefox/docs/api/appinfo.rst @@ -0,0 +1,15 @@ +.. py:currentmodule:: firefox_puppeteer.api.appinfo + +AppInfo +======= + +The appinfo class is a wrapper around the nsIXULAppInfo_ interface in +Firefox and provides access to a subset of its members. + +.. _nsIXULAppInfo: https://developer.mozilla.org/docs/Mozilla/Tech/XPCOM/Reference/Interface/nsIXULAppInfo + +AppInfo +------- + +.. autoclass:: AppInfo + :members: diff --git a/testing/marionette/puppeteer/firefox/docs/api/keys.rst b/testing/marionette/puppeteer/firefox/docs/api/keys.rst new file mode 100644 index 000000000..104b84e06 --- /dev/null +++ b/testing/marionette/puppeteer/firefox/docs/api/keys.rst @@ -0,0 +1,12 @@ +.. py:currentmodule:: firefox_puppeteer.api.keys + +Keys +==== + +Keys +---- + +.. autoclass:: Keys + :members: + :inherited-members: + :undoc-members: diff --git a/testing/marionette/puppeteer/firefox/docs/api/l10n.rst b/testing/marionette/puppeteer/firefox/docs/api/l10n.rst new file mode 100644 index 000000000..dd332a63c --- /dev/null +++ b/testing/marionette/puppeteer/firefox/docs/api/l10n.rst @@ -0,0 +1,11 @@ +.. py:currentmodule:: firefox_puppeteer.api.l10n + +Localization +============ + +Localization +------------ + +.. autoclass:: L10n + :members: + :undoc-members: diff --git a/testing/marionette/puppeteer/firefox/docs/api/places.rst b/testing/marionette/puppeteer/firefox/docs/api/places.rst new file mode 100644 index 000000000..a469c1c6c --- /dev/null +++ b/testing/marionette/puppeteer/firefox/docs/api/places.rst @@ -0,0 +1,13 @@ +.. py:currentmodule:: firefox_puppeteer.api.places + +Places +====== + +The Places class provides low-level access for several bookmark and history +related methods. + +Places +------ + +.. autoclass:: Places + :members: diff --git a/testing/marionette/puppeteer/firefox/docs/api/security.rst b/testing/marionette/puppeteer/firefox/docs/api/security.rst new file mode 100644 index 000000000..eb9799fe0 --- /dev/null +++ b/testing/marionette/puppeteer/firefox/docs/api/security.rst @@ -0,0 +1,13 @@ +.. py:currentmodule:: firefox_puppeteer.api.security + +Security +=========== + +The Security class gives access to various helper methods, which assist in working with +certificates or accessing specific security related information. + +Security +-------- + +.. autoclass:: Security + :members: diff --git a/testing/marionette/puppeteer/firefox/docs/api/software_update.rst b/testing/marionette/puppeteer/firefox/docs/api/software_update.rst new file mode 100644 index 000000000..ce9f41016 --- /dev/null +++ b/testing/marionette/puppeteer/firefox/docs/api/software_update.rst @@ -0,0 +1,30 @@ +.. py:currentmodule:: firefox_puppeteer.api.software_update + +SoftwareUpdate +============== + +The SoftwareUpdate class provides helpers for update tests. + +SoftwareUpdate +-------------- + +.. autoclass:: SoftwareUpdate + :members: + +ActiveUpdate +------------ + +.. autoclass:: ActiveUpdate + :members: + +MARChannels +----------- + +.. autoclass:: MARChannels + :members: + +UpdateChannel +------------- + +.. autoclass:: UpdateChannel + :members: diff --git a/testing/marionette/puppeteer/firefox/docs/api/utils.rst b/testing/marionette/puppeteer/firefox/docs/api/utils.rst new file mode 100644 index 000000000..b654d24ec --- /dev/null +++ b/testing/marionette/puppeteer/firefox/docs/api/utils.rst @@ -0,0 +1,12 @@ +.. py:currentmodule:: firefox_puppeteer.api.utils + +Utils +=========== + +The Utils class gives access to various helper methods. + +Utils +----- + +.. autoclass:: Utils + :members: |