horizon/openstack_dashboard/test/integration_tests
Victor Stinner 070bde3e21 Replace dict.iteritems() with six.iteritems(dict)
The iteritems() method of Python 2 dictionaries was renamed to items()
on Python 3. The overhead of creating a temporary list for items() on
Python 2 is negligible.

Replace also dict.itervalues() with six.itervalues(dict) in
horizon/test/utils.py.

Partial-Implements: blueprint porting-python3
Change-Id: Ib2d62236be2620c4626099ce80e6c8a9397a4533
2015-07-24 12:20:56 +02:00
..
pages Replace dict.iteritems() with six.iteritems(dict) 2015-07-24 12:20:56 +02:00
regions Add integration tests for Identity->Projects page 2015-07-01 17:36:37 +03:00
tests Add integration tests for Identity->Projects page 2015-07-01 17:36:37 +03:00
__init__.py Integration tests - running the tests 2014-02-26 10:45:21 +00:00
basewebobject.py Fix _wait_till_element_disappear 2015-07-22 14:36:38 +02:00
config.py Use default values in horizon.conf 2015-06-17 21:14:11 +00:00
helpers.py Add html source code on test failure for debugging 2015-03-20 17:43:56 +01:00
horizon.conf Add test_sahara_image_registry 2015-03-05 11:36:00 +01:00
README.rst Integration tests - running the tests 2014-02-26 10:45:21 +00:00
webdriver.py Add workaround for StaleElementReferenceException 2014-10-08 11:21:17 +03:00

Horizon Integration Tests

Horizon's integration tests treat Horizon as a black box.

Running the integration tests

  1. Set up an OpenStack server

  2. Update the configuration file at horizon.conf

  3. Run the tests. :

    $ ./run_tests.sh --integration

More information

https://wiki.openstack.org/wiki/Horizon/Testing/UI

https://wiki.mozilla.org/QA/Execution/Web_Testing/Docs/Automation/StyleGuide#Page_Objects