blob: 07413d742e01b6c85c6639fd6014bf731d38b222 [file] [log] [blame]
George Keishinge7e91712021-09-03 11:28:44 -05001#!/usr/bin/env python3
Sathyajith M S4f26ae72018-01-16 04:45:05 -06002
3r"""
4Contains xpaths and related string constants applicable to all openBMC GUI
5menus.
6"""
7
8
George Keishinge635ddc2022-12-08 07:38:02 -06009class resource_variables():
10
Rahul Maheshwari314cd9f2019-04-02 01:13:39 -050011 xpath_textbox_hostname = "//input[@id='host']"
12 xpath_textbox_username = "//input[@id='username']"
13 xpath_textbox_password = "//input[@id='password']"
Anves Kumar rayankula9233ce12020-06-17 00:14:41 -050014 xpath_input_password = "//input[@id='password']"
15 xpath_input_confirm_password = "//input[@id='passwordConfirm']"
16 xpath_submit_button = '//button[@type="submit"]'
17 xpath_button_profile_settings = '//a[@href="#/profile-settings"]'
Sathyajith M S4f26ae72018-01-16 04:45:05 -060018 xpath_button_login = "//*[@id='login__submit']"
Rahul Maheshwari31b3c432020-06-26 05:24:13 -050019 xpath_button_user_action = "//button[@id='user-actions']"
20 xpath_button_logout = '//button[text()="Log out"]'
Rahul Maheshwari65f69442018-11-27 04:43:00 -060021 xpath_yes_button = "//button[text()='Yes']"
Rahul Maheshwari8b5b5a42018-11-30 01:41:35 -060022 xpath_power_indicator = "//*[@id='power-indicator-bar']"
Sathyajith M S4f26ae72018-01-16 04:45:05 -060023 xpath_select_button_power_on = "//*[@id='power__power-on']"
Rahul Maheshwaridd3bb602019-10-23 13:31:33 -050024 xpath_cancel_button = "//button[contains(text(),'Cancel')]"
25 xpath_save_setting_button = "//button[contains(text(),'Save settings')]"
Anusha Dathatribb20cb02019-11-13 10:32:27 -060026 xpath_save_button = "//button[contains(text(),'Save')]"
Anusha Dathatrie9650a62019-11-15 04:02:24 -060027 xpath_remove_button = "//button[contains(text(),'Remove')]"
28 xpath_add_button = "//button[@type='submit']"
Sathyajith M S4f26ae72018-01-16 04:45:05 -060029
George Keishinge635ddc2022-12-08 07:38:02 -060030 xpath_select_button_warm_reboot = \
31 "//*[@id='power__warm-boot']"
32 xpath_operation_warning_message = \
33 "//*[@class='inline__confirm active']"
Sathyajith M Sf52d6fc2018-01-24 10:11:18 -060034 text_warm_reboot_warning_message = "warm reboot?"
George Keishinge635ddc2022-12-08 07:38:02 -060035 xpath_select_button_warm_reboot_yes = \
36 "//*[@id='power-operations']" \
Sathyajith M Sf52d6fc2018-01-24 10:11:18 -060037 "/div[3]/div[3]/confirm/div/div[2]/button[1]"
38
George Keishinge635ddc2022-12-08 07:38:02 -060039 xpath_select_button_cold_reboot = \
40 "//*[@id='power__cold-boot']"
Sathyajith M Sf52d6fc2018-01-24 10:11:18 -060041 text_cold_reboot_warning_message = "cold reboot?"
George Keishinge635ddc2022-12-08 07:38:02 -060042 xpath_select_button_cold_reboot_yes = \
43 "//*[@id='power-operations']" \
Sathyajith M Sf52d6fc2018-01-24 10:11:18 -060044 "/div[3]/div[4]/confirm/div/div[2]/button[2]"
45
George Keishinge635ddc2022-12-08 07:38:02 -060046 xpath_select_button_orderly_shutdown = \
47 "//*[@id='power__soft-shutdown']"
48 xpath_select_button_orderly_shutdown_button_no = \
49 "//*[@id='power-operations']/div[3]/div[5]"\
Sathyajith M Sf52d6fc2018-01-24 10:11:18 -060050 "/confirm/div/div[2]/button[2]"
51 text_orderly_shutdown_warning_message = "orderly shutdown?"
George Keishinge635ddc2022-12-08 07:38:02 -060052 xpath_select_button_orderly_shutdown_yes = \
53 "//*[@id='power-operations']/div[3]/div[5]" \
Sathyajith M Sf52d6fc2018-01-24 10:11:18 -060054 "/confirm/div/div[2]/button[1]"
55
George Keishinge635ddc2022-12-08 07:38:02 -060056 xpath_select_button_immediate_shutdown = \
57 "//*[@id='power__hard-shutdown']"
Sathyajith M Sf52d6fc2018-01-24 10:11:18 -060058 text_immediate_shutdown_warning_message = "immediate shutdown?"
George Keishinge635ddc2022-12-08 07:38:02 -060059 xpath_select_button_immediate_shutdown_yes = \
60 "//*[@id='power-operations']/div[3]/div[6]" \
Sathyajith M Sf52d6fc2018-01-24 10:11:18 -060061 "/confirm/div/div[2]/button[1]"
62
Sathyajith M S4f26ae72018-01-16 04:45:05 -060063 obmc_off_state = "Off"
Sathyajith M Sf52d6fc2018-01-24 10:11:18 -060064 obmc_standby_state = "Standby"
Sathyajith M S4f26ae72018-01-16 04:45:05 -060065 obmc_running_state = "Running"
Sivas SRRffa42692018-01-17 05:17:35 -060066
Rahul Maheshwari57a41552019-10-22 01:02:23 -050067 # xpath for main menu.
68 xpath_select_server_control = "//button[contains(@class,'btn-control')]"
George Keishinge635ddc2022-12-08 07:38:02 -060069 xpath_select_server_configuration = "//button[contains(@class,'btn-config')]"
70 xpath_select_access_control = "//button[contains(@class,'btn-access-control')]"
Rahul Maheshwari57a41552019-10-22 01:02:23 -050071
72 # xpath for sub main menu.
George Keishinge635ddc2022-12-08 07:38:02 -060073 xpath_select_server_power_operations = "//a[@href='#/server-control/power-operations']"
Rahul Maheshwaridd3bb602019-10-23 13:31:33 -050074 xpath_select_snmp_settings = "//a[@href='#/configuration/snmp']"
George Keishinge635ddc2022-12-08 07:38:02 -060075 xpath_select_manage_power_usage = "//a[@href='#/server-control/power-usage']"
Rahul Maheshwari23decff2019-10-29 00:55:53 -050076 xpath_select_virtual_media = "//a[@href='#/server-control/virtual-media']"
77 xpath_select_sol_console = "//a[@href='#/server-control/remote-console']"
78 xpath_select_reboot_bmc = "//a[@href='#/server-control/bmc-reboot']"
79 xpath_select_ldap = "//a[@href='#/access-control/ldap']"
80 xpath_select_server_health = "//a[@href='#/server-health/event-log']"
Anusha Dathatrif0821d42019-10-29 21:07:00 -050081 xpath_select_server_led = "//a[@href='#/server-control/server-led']"
Anusha Dathatric8ca7682019-10-30 01:38:31 -050082 xpath_select_date_time_settings = "//a[@href='#/configuration/date-time']"
Anusha Dathatridc74fdc2019-11-13 01:19:43 -060083 xpath_select_local_users = "//a[@href='#/access-control/local-users']"
Rahul Maheshwari57a41552019-10-22 01:02:23 -050084
Rahul Maheshwaridbbf1792018-10-31 05:36:29 -050085 # GUI header elements locators.
George Keishinge635ddc2022-12-08 07:38:02 -060086 xpath_select_server_power = "//a[@href='#/server-control/power-operations']"
Rahul Maheshwaridbbf1792018-10-31 05:36:29 -050087
Sivas SRR008dcc62018-02-27 06:34:56 -060088 # Server health elements locators.
George Keishinge635ddc2022-12-08 07:38:02 -060089 xpath_select_refresh_button = \
90 "//*[contains(text(),'Refresh')]"
91 xpath_event_severity_all = "//*[text()='Filter by severity']/following-sibling::button[1]"
92 xpath_event_severity_high = "//*[text()='Filter by severity']/following-sibling::button[2]"
93 xpath_event_severity_medium = "//*[text()='Filter by severity']/following-sibling::button[3]"
94 xpath_event_severity_low = "//*[text()='Filter by severity']/following-sibling::button[4]"
95 xpath_drop_down_timezone_edt = \
Sivas SRR008dcc62018-02-27 06:34:56 -060096 "//*[@id='event-log']/section[1]/div/div/button"
97 xpath_refresh_circle = "/html/body/main/loader/div[1]/svg/circle"
George Keishinge635ddc2022-12-08 07:38:02 -060098 xpath_drop_down_timezone_utc = \
Sivas SRR008dcc62018-02-27 06:34:56 -060099 "//*[@id='event-log']/section[1]/div/div/ul/li[2]/button"
Anusha Dathatricae580a2019-10-16 06:17:19 -0500100 xpath_event_filter_all = "//*[text()='All events']"
101 xpath_event_filter_resolved = "//*[text()='Resolved events']"
102 xpath_event_filter_unresolved = "//*[text()='Unresolved events']"
George Keishinge635ddc2022-12-08 07:38:02 -0600103 xpath_event_action_bars = \
104 "//*[@id='event__actions-bar']/div[1]/label/span"
105 xpath_event_action_delete = \
Sivas SRR3e1a83b2018-03-12 07:52:07 -0500106 "//*[@id='event__actions-bar']/div[2]/div[2]/button[1]"
George Keishinge635ddc2022-12-08 07:38:02 -0600107 xpath_event_action_export = \
108 "//*[@id='event__actions-bar']/div[2]/div[2]/a"
109 xpath_number_of_events = \
110 "//*[@id='event__actions-bar']/div[2]/p[2]/span"
111 xpath_mark_as_resolved = \
Sivas SRRbe026912018-03-14 11:33:02 -0500112 "//*[@id='event__actions-bar']/div[2]/div[2]/button[2]"
113 xpath_events_export = "//*[@id='event__actions-bar']/div[2]/div[2]/a"
Anusha Dathatricae580a2019-10-16 06:17:19 -0500114 xpath_individual_event_select = "(//*[@class='control__indicator'])[2]"
George Keishinge635ddc2022-12-08 07:38:02 -0600115 xpath_individual_event_delete = \
Sivas SRR2631b632018-04-04 11:33:21 -0500116 "//*[@id='event__actions-bar']/div[2]/div[2]/button[1]"
Anusha Dathatricae580a2019-10-16 06:17:19 -0500117 xpath_second_event_select = "(//*[@class='control__indicator'])[3]"
George Keishinge635ddc2022-12-08 07:38:02 -0600118 xpath_individual_event_resolved = \
Sivas SRR2631b632018-04-04 11:33:21 -0500119 "//*[@id='event__actions-bar']/div[2]/div[2]/button[2]"
George Keishinge635ddc2022-12-08 07:38:02 -0600120 xpath_individual_event_export = \
Sivas SRR1a94d002018-04-06 08:48:58 -0500121 "//*[@id='event__actions-bar']/div[2]/div[2]/a"
Anusha Dathatricae580a2019-10-16 06:17:19 -0500122 xpath_select_all_events = "(//*[@class='control__indicator'])[1]"