summaryrefslogtreecommitdiff
path: root/openstack_dashboard/test/integration_tests/pages/basepage.py
blob: 62827f598641e3d3fcbaea706952717f4c795ebc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
#    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.

import selenium.common.exceptions as Exceptions
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')
    _help_page_brand = (by.By.CSS_SELECTOR, '.navbar-brand')
    _default_message_locator = (by.By.CSS_SELECTOR, 'div.alert')

    @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 is_help_page(self):
        self._wait_till_element_visible(self._help_page_brand)

    def choose_theme(self, theme_name):
        self.topbar.user_dropdown_menu.choose_theme(theme_name)

    def find_all_messages(self):
        self.driver.implicitly_wait(self.conf.selenium.message_implicit_wait)
        try:
            msg_elements = self.driver.find_elements(
                *self._default_message_locator)
        except Exceptions.NoSuchElementException:
            msg_elements = []
        finally:
            self._turn_on_implicit_wait()
            return msg_elements

    def find_messages_and_dismiss(self):
        messages_level_present = set()
        for message_element in self.find_all_messages():
            message = messages.MessageRegion(
                self.driver, self.conf, message_element)
            messages_level_present.add(message.message_class)
            message.close()
        return messages_level_present

    def change_project(self, name):
        self.topbar.user_dropdown_project.click_on_project(name)


class BaseNavigationPage(BasePage, navigation.Navigation):
    pass