5001bca975
First pages: * pageobject - the base page for all page objects * loginpage - the login page object * basepage - base class for all dashboard page objects * adminpage * projectpage First test: test_login - a basic scenario test: * checks that the login page is available * logs in as a regular user * checks that the user home page loads without error https://wiki.openstack.org/wiki/Horizon/Testing/UI Partially implements blueprint: selenium-integration-testing Change-Id: Icad82f5f7810c348ddc30cd767f1d3bf5ecb926e
28 lines
674 B
Plaintext
28 lines
674 B
Plaintext
#
|
|
# Configuration filed based on Tempest's tempest.conf.sample
|
|
#
|
|
|
|
[dashboard]
|
|
# Where the dashboard can be found (string value)
|
|
dashboard_url=http://localhost/
|
|
|
|
# Login page for the dashboard (string value)
|
|
login_url=http://localhost/auth/login/
|
|
|
|
# Timeout in seconds to wait for a page to become available
|
|
# (integer value)
|
|
page_timeout=10
|
|
|
|
[identity]
|
|
# Username to use for non-admin API requests. (string value)
|
|
username=demo
|
|
|
|
# API key to use when authenticating. (string value)
|
|
password=pass
|
|
|
|
# Administrative Username to use for admin API requests.
|
|
# (string value)
|
|
admin_username=admin
|
|
|
|
# API key to use when authenticating as admin. (string value)
|
|
admin_password=pass |