blob: 6da8156b9b1b831c2f41e789d34c09fdef2bdfff [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
Patrick Williams20f38712022-12-08 06:18:26 -06009class resource_variables:
George Keishingfdd2dcf2023-02-10 00:46:47 -060010 r"""
11 Base class for GUI resource related XPATH variables.
12 """
George Keishing9c223092024-01-29 21:18:25 +053013
Rahul Maheshwari314cd9f2019-04-02 01:13:39 -050014 xpath_textbox_hostname = "//input[@id='host']"
15 xpath_textbox_username = "//input[@id='username']"
16 xpath_textbox_password = "//input[@id='password']"
Anves Kumar rayankula9233ce12020-06-17 00:14:41 -050017 xpath_input_password = "//input[@id='password']"
18 xpath_input_confirm_password = "//input[@id='passwordConfirm']"
19 xpath_submit_button = '//button[@type="submit"]'
20 xpath_button_profile_settings = '//a[@href="#/profile-settings"]'
Sathyajith M S4f26ae72018-01-16 04:45:05 -060021 xpath_button_login = "//*[@id='login__submit']"
Rahul Maheshwari31b3c432020-06-26 05:24:13 -050022 xpath_button_user_action = "//button[@id='user-actions']"
23 xpath_button_logout = '//button[text()="Log out"]'
Rahul Maheshwari65f69442018-11-27 04:43:00 -060024 xpath_yes_button = "//button[text()='Yes']"
Rahul Maheshwari8b5b5a42018-11-30 01:41:35 -060025 xpath_power_indicator = "//*[@id='power-indicator-bar']"
Sathyajith M S4f26ae72018-01-16 04:45:05 -060026 xpath_select_button_power_on = "//*[@id='power__power-on']"
Rahul Maheshwaridd3bb602019-10-23 13:31:33 -050027 xpath_cancel_button = "//button[contains(text(),'Cancel')]"
28 xpath_save_setting_button = "//button[contains(text(),'Save settings')]"
Anusha Dathatribb20cb02019-11-13 10:32:27 -060029 xpath_save_button = "//button[contains(text(),'Save')]"
Anusha Dathatrie9650a62019-11-15 04:02:24 -060030 xpath_remove_button = "//button[contains(text(),'Remove')]"
31 xpath_add_button = "//button[@type='submit']"
Sathyajith M S4f26ae72018-01-16 04:45:05 -060032
Patrick Williams20f38712022-12-08 06:18:26 -060033 xpath_select_button_warm_reboot = "//*[@id='power__warm-boot']"
34 xpath_operation_warning_message = "//*[@class='inline__confirm active']"
Sathyajith M Sf52d6fc2018-01-24 10:11:18 -060035 text_warm_reboot_warning_message = "warm reboot?"
Patrick Williams20f38712022-12-08 06:18:26 -060036 xpath_select_button_warm_reboot_yes = (
37 "//*[@id='power-operations']"
Sathyajith M Sf52d6fc2018-01-24 10:11:18 -060038 "/div[3]/div[3]/confirm/div/div[2]/button[1]"
Patrick Williams20f38712022-12-08 06:18:26 -060039 )
Sathyajith M Sf52d6fc2018-01-24 10:11:18 -060040
Patrick Williams20f38712022-12-08 06:18:26 -060041 xpath_select_button_cold_reboot = "//*[@id='power__cold-boot']"
Sathyajith M Sf52d6fc2018-01-24 10:11:18 -060042 text_cold_reboot_warning_message = "cold reboot?"
Patrick Williams20f38712022-12-08 06:18:26 -060043 xpath_select_button_cold_reboot_yes = (
44 "//*[@id='power-operations']"
Sathyajith M Sf52d6fc2018-01-24 10:11:18 -060045 "/div[3]/div[4]/confirm/div/div[2]/button[2]"
Patrick Williams20f38712022-12-08 06:18:26 -060046 )
Sathyajith M Sf52d6fc2018-01-24 10:11:18 -060047
Patrick Williams20f38712022-12-08 06:18:26 -060048 xpath_select_button_orderly_shutdown = "//*[@id='power__soft-shutdown']"
49 xpath_select_button_orderly_shutdown_button_no = (
50 "//*[@id='power-operations']/div[3]/div[5]"
Sathyajith M Sf52d6fc2018-01-24 10:11:18 -060051 "/confirm/div/div[2]/button[2]"
Patrick Williams20f38712022-12-08 06:18:26 -060052 )
Sathyajith M Sf52d6fc2018-01-24 10:11:18 -060053 text_orderly_shutdown_warning_message = "orderly shutdown?"
Patrick Williams20f38712022-12-08 06:18:26 -060054 xpath_select_button_orderly_shutdown_yes = (
55 "//*[@id='power-operations']/div[3]/div[5]"
Sathyajith M Sf52d6fc2018-01-24 10:11:18 -060056 "/confirm/div/div[2]/button[1]"
Patrick Williams20f38712022-12-08 06:18:26 -060057 )
Sathyajith M Sf52d6fc2018-01-24 10:11:18 -060058
Patrick Williams20f38712022-12-08 06:18:26 -060059 xpath_select_button_immediate_shutdown = "//*[@id='power__hard-shutdown']"
Sathyajith M Sf52d6fc2018-01-24 10:11:18 -060060 text_immediate_shutdown_warning_message = "immediate shutdown?"
Patrick Williams20f38712022-12-08 06:18:26 -060061 xpath_select_button_immediate_shutdown_yes = (
62 "//*[@id='power-operations']/div[3]/div[6]"
Sathyajith M Sf52d6fc2018-01-24 10:11:18 -060063 "/confirm/div/div[2]/button[1]"
Patrick Williams20f38712022-12-08 06:18:26 -060064 )
Sathyajith M Sf52d6fc2018-01-24 10:11:18 -060065
Sathyajith M S4f26ae72018-01-16 04:45:05 -060066 obmc_off_state = "Off"
Sathyajith M Sf52d6fc2018-01-24 10:11:18 -060067 obmc_standby_state = "Standby"
Sathyajith M S4f26ae72018-01-16 04:45:05 -060068 obmc_running_state = "Running"
Sivas SRRffa42692018-01-17 05:17:35 -060069
Rahul Maheshwari57a41552019-10-22 01:02:23 -050070 # xpath for main menu.
71 xpath_select_server_control = "//button[contains(@class,'btn-control')]"
Patrick Williams20f38712022-12-08 06:18:26 -060072 xpath_select_server_configuration = (
73 "//button[contains(@class,'btn-config')]"
74 )
75 xpath_select_access_control = (
76 "//button[contains(@class,'btn-access-control')]"
77 )
Rahul Maheshwari57a41552019-10-22 01:02:23 -050078
79 # xpath for sub main menu.
Patrick Williams20f38712022-12-08 06:18:26 -060080 xpath_select_server_power_operations = (
81 "//a[@href='#/server-control/power-operations']"
82 )
Rahul Maheshwaridd3bb602019-10-23 13:31:33 -050083 xpath_select_snmp_settings = "//a[@href='#/configuration/snmp']"
Patrick Williams20f38712022-12-08 06:18:26 -060084 xpath_select_manage_power_usage = (
85 "//a[@href='#/server-control/power-usage']"
86 )
Rahul Maheshwari23decff2019-10-29 00:55:53 -050087 xpath_select_virtual_media = "//a[@href='#/server-control/virtual-media']"
88 xpath_select_sol_console = "//a[@href='#/server-control/remote-console']"
89 xpath_select_reboot_bmc = "//a[@href='#/server-control/bmc-reboot']"
90 xpath_select_ldap = "//a[@href='#/access-control/ldap']"
91 xpath_select_server_health = "//a[@href='#/server-health/event-log']"
Anusha Dathatrif0821d42019-10-29 21:07:00 -050092 xpath_select_server_led = "//a[@href='#/server-control/server-led']"
Anusha Dathatric8ca7682019-10-30 01:38:31 -050093 xpath_select_date_time_settings = "//a[@href='#/configuration/date-time']"
Anusha Dathatridc74fdc2019-11-13 01:19:43 -060094 xpath_select_local_users = "//a[@href='#/access-control/local-users']"
Rahul Maheshwari57a41552019-10-22 01:02:23 -050095
Rahul Maheshwaridbbf1792018-10-31 05:36:29 -050096 # GUI header elements locators.
Patrick Williams20f38712022-12-08 06:18:26 -060097 xpath_select_server_power = (
98 "//a[@href='#/server-control/power-operations']"
99 )
Rahul Maheshwaridbbf1792018-10-31 05:36:29 -0500100
Sivas SRR008dcc62018-02-27 06:34:56 -0600101 # Server health elements locators.
Patrick Williams20f38712022-12-08 06:18:26 -0600102 xpath_select_refresh_button = "//*[contains(text(),'Refresh')]"
103 xpath_event_severity_all = (
104 "//*[text()='Filter by severity']/following-sibling::button[1]"
105 )
106 xpath_event_severity_high = (
107 "//*[text()='Filter by severity']/following-sibling::button[2]"
108 )
109 xpath_event_severity_medium = (
110 "//*[text()='Filter by severity']/following-sibling::button[3]"
111 )
112 xpath_event_severity_low = (
113 "//*[text()='Filter by severity']/following-sibling::button[4]"
114 )
115 xpath_drop_down_timezone_edt = (
Sivas SRR008dcc62018-02-27 06:34:56 -0600116 "//*[@id='event-log']/section[1]/div/div/button"
Patrick Williams20f38712022-12-08 06:18:26 -0600117 )
Sivas SRR008dcc62018-02-27 06:34:56 -0600118 xpath_refresh_circle = "/html/body/main/loader/div[1]/svg/circle"
Patrick Williams20f38712022-12-08 06:18:26 -0600119 xpath_drop_down_timezone_utc = (
Sivas SRR008dcc62018-02-27 06:34:56 -0600120 "//*[@id='event-log']/section[1]/div/div/ul/li[2]/button"
Patrick Williams20f38712022-12-08 06:18:26 -0600121 )
Anusha Dathatricae580a2019-10-16 06:17:19 -0500122 xpath_event_filter_all = "//*[text()='All events']"
123 xpath_event_filter_resolved = "//*[text()='Resolved events']"
124 xpath_event_filter_unresolved = "//*[text()='Unresolved events']"
Patrick Williams20f38712022-12-08 06:18:26 -0600125 xpath_event_action_bars = "//*[@id='event__actions-bar']/div[1]/label/span"
126 xpath_event_action_delete = (
Sivas SRR3e1a83b2018-03-12 07:52:07 -0500127 "//*[@id='event__actions-bar']/div[2]/div[2]/button[1]"
Patrick Williams20f38712022-12-08 06:18:26 -0600128 )
129 xpath_event_action_export = "//*[@id='event__actions-bar']/div[2]/div[2]/a"
130 xpath_number_of_events = "//*[@id='event__actions-bar']/div[2]/p[2]/span"
131 xpath_mark_as_resolved = (
Sivas SRRbe026912018-03-14 11:33:02 -0500132 "//*[@id='event__actions-bar']/div[2]/div[2]/button[2]"
Patrick Williams20f38712022-12-08 06:18:26 -0600133 )
Sivas SRRbe026912018-03-14 11:33:02 -0500134 xpath_events_export = "//*[@id='event__actions-bar']/div[2]/div[2]/a"
Anusha Dathatricae580a2019-10-16 06:17:19 -0500135 xpath_individual_event_select = "(//*[@class='control__indicator'])[2]"
Patrick Williams20f38712022-12-08 06:18:26 -0600136 xpath_individual_event_delete = (
Sivas SRR2631b632018-04-04 11:33:21 -0500137 "//*[@id='event__actions-bar']/div[2]/div[2]/button[1]"
Patrick Williams20f38712022-12-08 06:18:26 -0600138 )
Anusha Dathatricae580a2019-10-16 06:17:19 -0500139 xpath_second_event_select = "(//*[@class='control__indicator'])[3]"
Patrick Williams20f38712022-12-08 06:18:26 -0600140 xpath_individual_event_resolved = (
Sivas SRR2631b632018-04-04 11:33:21 -0500141 "//*[@id='event__actions-bar']/div[2]/div[2]/button[2]"
Patrick Williams20f38712022-12-08 06:18:26 -0600142 )
143 xpath_individual_event_export = (
Sivas SRR1a94d002018-04-06 08:48:58 -0500144 "//*[@id='event__actions-bar']/div[2]/div[2]/a"
Patrick Williams20f38712022-12-08 06:18:26 -0600145 )
Anusha Dathatricae580a2019-10-16 06:17:19 -0500146 xpath_select_all_events = "(//*[@class='control__indicator'])[1]"