Selenium WebDriver compatible page-object model and utilities for Firefox Accounts
Перейти к файлу
dependabot-preview[bot] 6fa50b3602 Bump pytest-selenium from 1.16.0 to 1.17.0 (#374)
Bumps [pytest-selenium](https://github.com/pytest-dev/pytest-selenium) from 1.16.0 to 1.17.0.
- [Release notes](https://github.com/pytest-dev/pytest-selenium/releases)
- [Changelog](https://github.com/pytest-dev/pytest-selenium/blob/master/docs/news.rst)
- [Commits](https://github.com/pytest-dev/pytest-selenium/compare/v1.16.0...v1.17.0)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2019-09-18 10:37:34 -07:00
fxapom Updated switch_to_window to recent version (#196) 2018-02-16 17:13:49 -08:00
requirements Bump pytest-selenium from 1.16.0 to 1.17.0 (#374) 2019-09-18 10:37:34 -07:00
tests Create FxA test account before Selenium session (#264) 2018-08-13 18:16:18 -07:00
.dockerignore Use a docker image to run the tests (#162) 2018-01-10 11:39:13 -08:00
.gitignore Use a docker image to run the tests (#162) 2018-01-10 11:39:13 -08:00
.travis.yml Remove fte-ci@mozilla.com email from Travis (#338) 2019-03-28 16:53:10 -07:00
CHANGES.rst Update release notes for v1.10.1 2017-07-06 15:09:41 +01:00
CODE_OF_CONDUCT.md Add Mozilla Code of Conduct file (#341) 2019-04-01 14:27:58 -07:00
Dockerfile Bump Firefox to latest, 66.0 (#352) 2019-05-06 22:22:09 -07:00
Jenkinsfile Bump Firefox to latest, 66.0 (#352) 2019-05-06 22:22:09 -07:00
LICENSE.txt Update license (#176) 2017-12-07 10:31:34 +00:00
README.rst Remove pyup.io badges; replace with dependabot (#277) 2018-09-15 10:58:15 -07:00
setup.py Pin and update PyFxA + PyPOM dependencies 2018-03-21 13:48:35 -07:00
tox.ini Create FxA test account before Selenium session (#264) 2018-08-13 18:16:18 -07:00

README.rst

Firefox Accounts Page Object Model
==================================

`Selenium WebDriver <http://docs.seleniumhq.org/docs/03_webdriver.jsp>`_
compatible page-object model and utilities for
`Firefox Accounts <https://accounts.firefox.com>`_

.. image:: https://img.shields.io/pypi/l/fxapom.svg
   :target: https://github.com/mozilla/fxapom/blob/master/LICENSE.txt
   :alt: License
.. image:: https://img.shields.io/pypi/v/fxapom.svg
   :target: https://pypi.python.org/pypi/fxapom/
   :alt: PyPI
.. image:: https://img.shields.io/travis/mozilla/fxapom.svg
   :target: https://travis-ci.org/mozilla/fxapom/
   :alt: Travis
.. image:: https://img.shields.io/github/issues-raw/mozilla/fxapom.svg
   :target: https://github.com/mozilla/fxapom/issues
   :alt: Issues
.. image:: https://api.dependabot.com/badges/status?host=github&repo=mozilla/fxapom
   :target: https://dependabot.com
   :alt: Dependabot

Overview
--------

This package contains a utility to create a test Firefox Account on either the
dev or prod instance of Firefox Accounts, as well as a set of page objects that
can be used to interact with Firefox Accounts' sign in screens.

Installation
------------

To install FxAPOM:

.. code-block:: bash

  $ pip install fxapom

Usage
-----

To create a test Firefox Account, simply create an instance of the
``FxATestAccount`` object. You can pass the url for the Firefox Accounts API
server into the constructor or, if you know you want to create a development
Account, you can omit that argument.

There are two constants available to you to specify the url for either the
development environment or the production environment, which are:

* ``fxapom.DEV_URL`` - the url for the development environment
* ``fxapom.PROD_URL`` - the url for the production environment

Example of creating an account on the development environment, using the
default:

.. code-block:: python

  from fxapom.fxapom import FxATestAccount
  account = FxATestAccount()

Example of creating an account on the development environment, specifying the
``DEV_URL``:

.. code-block:: python

  from fxapom.fxapom import DEV_URL, FxATestAccount
  account = FxATestAccount(DEV_URL)

To sign in via Firefox Accounts, use the ``sign_in`` method in the
``WebDriverFxA`` object, passing in the email address and password:

.. code-block:: python

  from fxapom.fxapom import WebDriverFxA
  fxa = WebDriverFxA(selenium)
  fxa.sign_in(email_address, password)

Note that we are passing ``selenium`` into the constructor of ``WebDriverFxA``,
which it then uses to interact with the Firefox Accounts web pages.

To create an account and then use it to sign in, use both tools described
above:

.. code-block:: python

  from fxapom.fxapom import FxATestAccount, WebDriverFxA
  account = FxATestAccount()
  fxa = WebDriverFxA(selenium)
  fxa.sign_in(account.email, account.password)

Contributing
------------

Fork the repository and submit PRs with bug fixes and enhancements,
contributions are very welcome. You can run the tests using
`Docker <https://www.docker.com/>`_:

.. code-block:: bash

  $ docker build -t fxapom .
  $ docker run -it fxapom tox

Resources
---------

- `Release Notes <http://github.com/mozilla/fxapom/blob/master/CHANGES.rst>`_
- `Issue Tracker <http://github.com/mozilla/fxapom/issues>`_
- `Code <http://github.com/mozilla/fxapom/>`_