71 lines
2.3 KiB
Python
71 lines
2.3 KiB
Python
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
from selenium.webdriver.common import by
|
|
|
|
from openstack_dashboard.test.integration_tests.pages import navigation
|
|
from openstack_dashboard.test.integration_tests.pages import pageobject
|
|
from openstack_dashboard.test.integration_tests.regions import bars
|
|
from openstack_dashboard.test.integration_tests.regions import menus
|
|
from openstack_dashboard.test.integration_tests.regions import messages
|
|
|
|
|
|
class BasePage(pageobject.PageObject):
|
|
"""Base class for all dashboard page objects."""
|
|
|
|
_heading_locator = (by.By.CSS_SELECTOR, 'div.page-header > h2')
|
|
|
|
@property
|
|
def heading(self):
|
|
return self._get_element(*self._heading_locator)
|
|
|
|
@property
|
|
def topbar(self):
|
|
return bars.TopBarRegion(self.driver, self.conf)
|
|
|
|
@property
|
|
def is_logged_in(self):
|
|
return self.topbar.is_logged_in
|
|
|
|
@property
|
|
def navaccordion(self):
|
|
return menus.NavigationAccordionRegion(self.driver, self.conf)
|
|
|
|
def go_to_login_page(self):
|
|
self.driver.get(self.login_url)
|
|
|
|
def go_to_home_page(self):
|
|
self.topbar.brand.click()
|
|
|
|
def log_out(self):
|
|
self.topbar.user_dropdown_menu.click_on_logout()
|
|
|
|
def go_to_help_page(self):
|
|
self.topbar.user_dropdown_menu.click_on_help()
|
|
|
|
def choose_theme(self, theme_name):
|
|
self.topbar.user_dropdown_menu.choose_theme(theme_name)
|
|
|
|
def find_message_and_dismiss(self, message_level=messages.SUCCESS):
|
|
message = messages.MessageRegion(self.driver, self.conf, message_level)
|
|
is_message_present = message.exists()
|
|
if is_message_present:
|
|
message.close()
|
|
return is_message_present
|
|
|
|
def change_project(self, name):
|
|
self.topbar.user_dropdown_project.click_on_project(name)
|
|
|
|
|
|
class BaseNavigationPage(BasePage, navigation.Navigation):
|
|
pass
|