1b89977a4SRahul Maheshwari#!/usr/bin/python
2b89977a4SRahul Maheshwari
3b89977a4SRahul Maheshwarir"""
4b89977a4SRahul MaheshwariContains xpaths and related string constants applicable to all openBMC GUI
5b89977a4SRahul Maheshwarimenus.
6b89977a4SRahul Maheshwari"""
7b89977a4SRahul Maheshwari
8b89977a4SRahul Maheshwari
9b89977a4SRahul Maheshwariclass resource_variables():
10b89977a4SRahul Maheshwari
11314cd9f9SRahul Maheshwari    xpath_textbox_hostname = "//input[@id='host']"
12314cd9f9SRahul Maheshwari    xpath_textbox_username = "//input[@id='username']"
13314cd9f9SRahul Maheshwari    xpath_textbox_password = "//input[@id='password']"
14b89977a4SRahul Maheshwari    xpath_button_login = "//*[@id='login__submit']"
15b2181bf1SAnusha Dathatri    xpath_button_logout = '//a[contains(text(), "Log out")]'
16b89977a4SRahul Maheshwari    xpath_yes_button = "//button[text()='Yes']"
17b89977a4SRahul Maheshwari    xpath_openbmc_url = "http://localhost:8080/#/login"
18b89977a4SRahul Maheshwari    xpath_openbmc_ip = "//*[@id='login__form']/input[1]"
19b89977a4SRahul Maheshwari    xpath_power_indicator = "//*[@id='power-indicator-bar']"
20b89977a4SRahul Maheshwari    xpath_select_button_power_on = "//*[@id='power__power-on']"
21b89977a4SRahul Maheshwari
22b89977a4SRahul Maheshwari    xpath_select_button_warm_reboot = \
23b89977a4SRahul Maheshwari        "//*[@id='power__warm-boot']"
24f93a5c41SAnusha Dathatri    xpath_operation_warning_message = \
25f93a5c41SAnusha Dathatri        "//*[@class='inline__confirm active']"
26b89977a4SRahul Maheshwari    xpath_select_button_warm_reboot_no = \
27b89977a4SRahul Maheshwari        "//*[@id='power-operations']/div[3]" \
28b89977a4SRahul Maheshwari        "/div[3]/confirm/div/div[2]/button[2]"
29b89977a4SRahul Maheshwari    text_warm_reboot_warning_message = "warm reboot?"
30b89977a4SRahul Maheshwari    xpath_select_button_warm_reboot_yes = \
31b89977a4SRahul Maheshwari        "//*[@id='power-operations']" \
32b89977a4SRahul Maheshwari        "/div[3]/div[3]/confirm/div/div[2]/button[1]"
33b89977a4SRahul Maheshwari
34b89977a4SRahul Maheshwari    xpath_select_button_cold_reboot = \
35b89977a4SRahul Maheshwari        "//*[@id='power__cold-boot']"
36b89977a4SRahul Maheshwari    xpath_select_button_cold_reboot_no = \
37b89977a4SRahul Maheshwari        "//*[@id='power-operations']/div[3]/div[4]" \
38b89977a4SRahul Maheshwari        "/confirm/div/div[2]/button[2]"
39b89977a4SRahul Maheshwari    text_cold_reboot_warning_message = "cold reboot?"
40b89977a4SRahul Maheshwari    xpath_select_button_cold_reboot_yes = \
41b89977a4SRahul Maheshwari        "//*[@id='power-operations']" \
42b89977a4SRahul Maheshwari        "/div[3]/div[4]/confirm/div/div[2]/button[2]"
43b89977a4SRahul Maheshwari
44b89977a4SRahul Maheshwari    xpath_select_button_orderly_shutdown = \
45b89977a4SRahul Maheshwari        "//*[@id='power__soft-shutdown']"
46b89977a4SRahul Maheshwari    xpath_select_button_orderly_shutdown_button_no = \
47b89977a4SRahul Maheshwari        "//*[@id='power-operations']/div[3]/div[5]"\
48b89977a4SRahul Maheshwari        "/confirm/div/div[2]/button[2]"
49b89977a4SRahul Maheshwari    text_orderly_shutdown_warning_message = "orderly shutdown?"
50b89977a4SRahul Maheshwari    xpath_select_button_orderly_shutdown_yes = \
51b89977a4SRahul Maheshwari        "//*[@id='power-operations']/div[3]/div[5]" \
52b89977a4SRahul Maheshwari        "/confirm/div/div[2]/button[1]"
53b89977a4SRahul Maheshwari
54b89977a4SRahul Maheshwari    xpath_select_button_immediate_shutdown = \
55b89977a4SRahul Maheshwari        "//*[@id='power__hard-shutdown']"
56b89977a4SRahul Maheshwari    xpath_select_button_immediate_shutdown_no = \
57b89977a4SRahul Maheshwari        "//*[@id='power-operations']/div[3]/div[6]" \
58b89977a4SRahul Maheshwari        "/confirm/div/div[2]/button[2]"
59b89977a4SRahul Maheshwari    text_immediate_shutdown_warning_message = "immediate shutdown?"
60b89977a4SRahul Maheshwari    xpath_select_button_immediate_shutdown_yes = \
61b89977a4SRahul Maheshwari        "//*[@id='power-operations']/div[3]/div[6]" \
62b89977a4SRahul Maheshwari        "/confirm/div/div[2]/button[1]"
63b89977a4SRahul Maheshwari
64b89977a4SRahul Maheshwari    obmc_off_state = "Off"
65b89977a4SRahul Maheshwari    obmc_standby_state = "Standby"
66b89977a4SRahul Maheshwari    obmc_running_state = "Running"
67b89977a4SRahul Maheshwari
68b89977a4SRahul Maheshwari    # Power operation elements needed for power on.
69b89977a4SRahul Maheshwari    header_wrapper = "3"
70b89977a4SRahul Maheshwari    header_wrapper_elt = "3"
71b89977a4SRahul Maheshwari
72b89977a4SRahul Maheshwari    # Power operation elements needed for power operations confirmation.
73b89977a4SRahul Maheshwari    power_operations = "3"
74b89977a4SRahul Maheshwari    warm_boot = "3"
75b89977a4SRahul Maheshwari    cold_boot = "4"
76b89977a4SRahul Maheshwari    shut_down = "5"
77b89977a4SRahul Maheshwari    power_off = "6"
78b89977a4SRahul Maheshwari    confirm_msg = "2"
79b89977a4SRahul Maheshwari    yes = "1"
80b89977a4SRahul Maheshwari    No = "2"
81b89977a4SRahul Maheshwari
82b89977a4SRahul Maheshwari    # GUI header elements locators.
83b89977a4SRahul Maheshwari    xpath_select_server_power = "//a[@href='#/server-control/power-operations']"
84b89977a4SRahul Maheshwari
85b89977a4SRahul Maheshwari    # Server health elements locators.
86b89977a4SRahul Maheshwari    xpath_select_server_health = "//a[@href='#/server-health/event-log']"
87b89977a4SRahul Maheshwari    xpath_server_health_text =  \
88b89977a4SRahul Maheshwari        "//*[@id='header__wrapper']/div/div[3]/a[2]/span"
89b89977a4SRahul Maheshwari    xpath_select_refresh_button = \
902513ae5bSAnusha Dathatri        "//*[contains(text(),'Refresh')]"
91dadb75e5SAnusha Dathatri    xpath_event_severity_all = "//*[text()='Filter by severity']/following-sibling::button[1]"
92dadb75e5SAnusha Dathatri    xpath_event_severity_high = "//*[text()='Filter by severity']/following-sibling::button[2]"
93dadb75e5SAnusha Dathatri    xpath_event_severity_medium = "//*[text()='Filter by severity']/following-sibling::button[3]"
94dadb75e5SAnusha Dathatri    xpath_event_severity_low = "//*[text()='Filter by severity']/following-sibling::button[4]"
95b89977a4SRahul Maheshwari    xpath_drop_down_timezone_edt = \
96b89977a4SRahul Maheshwari        "//*[@id='event-log']/section[1]/div/div/button"
97b89977a4SRahul Maheshwari    xpath_refresh_circle = "/html/body/main/loader/div[1]/svg/circle"
98b89977a4SRahul Maheshwari    xpath_drop_down_timezone_utc =  \
99b89977a4SRahul Maheshwari        "//*[@id='event-log']/section[1]/div/div/ul/li[2]/button"
100*cae580a6SAnusha Dathatri    xpath_event_filter_all = "//*[text()='All events']"
101*cae580a6SAnusha Dathatri    xpath_event_filter_resolved = "//*[text()='Resolved events']"
102*cae580a6SAnusha Dathatri    xpath_event_filter_unresolved = "//*[text()='Unresolved events']"
103b89977a4SRahul Maheshwari    xpath_event_action_bars = \
104b89977a4SRahul Maheshwari        "//*[@id='event__actions-bar']/div[1]/label/span"
105b89977a4SRahul Maheshwari    xpath_event_action_delete = \
106b89977a4SRahul Maheshwari        "//*[@id='event__actions-bar']/div[2]/div[2]/button[1]"
107b89977a4SRahul Maheshwari    xpath_event_action_export = \
108b89977a4SRahul Maheshwari        "//*[@id='event__actions-bar']/div[2]/div[2]/a"
109b89977a4SRahul Maheshwari    xpath_number_of_events = \
110b89977a4SRahul Maheshwari        "//*[@id='event__actions-bar']/div[2]/p[2]/span"
111b89977a4SRahul Maheshwari    xpath_mark_as_resolved = \
112b89977a4SRahul Maheshwari        "//*[@id='event__actions-bar']/div[2]/div[2]/button[2]"
113b89977a4SRahul Maheshwari    xpath_events_export = "//*[@id='event__actions-bar']/div[2]/div[2]/a"
114b89977a4SRahul Maheshwari    xpath_event_delete_no = \
115b89977a4SRahul Maheshwari        "//*[@id='event__actions-bar']/div[2]/div[1]/div[2]/button[2]"
116b89977a4SRahul Maheshwari    xpath_event_delete_yes = \
117b89977a4SRahul Maheshwari        "//*[@id='event__actions-bar']/div[2]/div[1]/div[2]/button[1]"
118*cae580a6SAnusha Dathatri    xpath_individual_event_select = "(//*[@class='control__indicator'])[2]"
119b89977a4SRahul Maheshwari    xpath_individual_event_delete = \
120b89977a4SRahul Maheshwari        "//*[@id='event__actions-bar']/div[2]/div[2]/button[1]"
121*cae580a6SAnusha Dathatri    xpath_second_event_select = "(//*[@class='control__indicator'])[3]"
122b89977a4SRahul Maheshwari    xpath_individual_event_resolved = \
123b89977a4SRahul Maheshwari        "//*[@id='event__actions-bar']/div[2]/div[2]/button[2]"
124b89977a4SRahul Maheshwari    xpath_individual_event_export = \
125b89977a4SRahul Maheshwari        "//*[@id='event__actions-bar']/div[2]/div[2]/a"
126*cae580a6SAnusha Dathatri    xpath_select_all_events = "(//*[@class='control__indicator'])[1]"
127