blob: 9a79a188f8efa6ef3f9aeb4ebda0184596978872 [file] [log] [blame]
Sathyajith M S4f26ae72018-01-16 04:45:05 -06001#!/usr/bin/python
2
3r"""
4Contains xpaths and related string constants applicable to all openBMC GUI
5menus.
6"""
7
8
9class 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']"
Sathyajith M S4f26ae72018-01-16 04:45:05 -060014 xpath_button_login = "//*[@id='login__submit']"
Anusha Dathatrib2181bf2019-05-15 02:04:37 -050015 xpath_button_logout = '//a[contains(text(), "Log out")]'
Rahul Maheshwari65f69442018-11-27 04:43:00 -060016 xpath_yes_button = "//button[text()='Yes']"
Sivas SRRffa42692018-01-17 05:17:35 -060017 xpath_openbmc_url = "http://localhost:8080/#/login"
18 xpath_openbmc_ip = "//*[@id='login__form']/input[1]"
Rahul Maheshwari8b5b5a42018-11-30 01:41:35 -060019 xpath_power_indicator = "//*[@id='power-indicator-bar']"
Sathyajith M S4f26ae72018-01-16 04:45:05 -060020 xpath_select_button_power_on = "//*[@id='power__power-on']"
Rahul Maheshwaridd3bb602019-10-23 13:31:33 -050021 xpath_cancel_button = "//button[contains(text(),'Cancel')]"
22 xpath_save_setting_button = "//button[contains(text(),'Save settings')]"
Sathyajith M S4f26ae72018-01-16 04:45:05 -060023
Sathyajith M Sf52d6fc2018-01-24 10:11:18 -060024 xpath_select_button_warm_reboot = \
25 "//*[@id='power__warm-boot']"
Anusha Dathatrif93a5c42019-07-24 05:29:44 -050026 xpath_operation_warning_message = \
27 "//*[@class='inline__confirm active']"
Sathyajith M Sf52d6fc2018-01-24 10:11:18 -060028 xpath_select_button_warm_reboot_no = \
29 "//*[@id='power-operations']/div[3]" \
30 "/div[3]/confirm/div/div[2]/button[2]"
31 text_warm_reboot_warning_message = "warm reboot?"
32 xpath_select_button_warm_reboot_yes = \
33 "//*[@id='power-operations']" \
34 "/div[3]/div[3]/confirm/div/div[2]/button[1]"
35
36 xpath_select_button_cold_reboot = \
37 "//*[@id='power__cold-boot']"
Sathyajith M Sf52d6fc2018-01-24 10:11:18 -060038 xpath_select_button_cold_reboot_no = \
39 "//*[@id='power-operations']/div[3]/div[4]" \
40 "/confirm/div/div[2]/button[2]"
41 text_cold_reboot_warning_message = "cold reboot?"
42 xpath_select_button_cold_reboot_yes = \
43 "//*[@id='power-operations']" \
44 "/div[3]/div[4]/confirm/div/div[2]/button[2]"
45
46 xpath_select_button_orderly_shutdown = \
47 "//*[@id='power__soft-shutdown']"
Sathyajith M Sf52d6fc2018-01-24 10:11:18 -060048 xpath_select_button_orderly_shutdown_button_no = \
49 "//*[@id='power-operations']/div[3]/div[5]"\
50 "/confirm/div/div[2]/button[2]"
51 text_orderly_shutdown_warning_message = "orderly shutdown?"
52 xpath_select_button_orderly_shutdown_yes = \
53 "//*[@id='power-operations']/div[3]/div[5]" \
54 "/confirm/div/div[2]/button[1]"
55
56 xpath_select_button_immediate_shutdown = \
57 "//*[@id='power__hard-shutdown']"
Sathyajith M Sf52d6fc2018-01-24 10:11:18 -060058 xpath_select_button_immediate_shutdown_no = \
59 "//*[@id='power-operations']/div[3]/div[6]" \
60 "/confirm/div/div[2]/button[2]"
61 text_immediate_shutdown_warning_message = "immediate shutdown?"
62 xpath_select_button_immediate_shutdown_yes = \
63 "//*[@id='power-operations']/div[3]/div[6]" \
64 "/confirm/div/div[2]/button[1]"
65
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')]"
Rahul Maheshwaridd3bb602019-10-23 13:31:33 -050072 xpath_select_server_configuration = "//button[contains(@class,'btn-config')]"
Rahul Maheshwari57a41552019-10-22 01:02:23 -050073
74 # xpath for sub main menu.
75 xpath_select_server_power_operations = "//a[@href='#/server-control/power-operations']"
Rahul Maheshwaridd3bb602019-10-23 13:31:33 -050076 xpath_select_snmp_settings = "//a[@href='#/configuration/snmp']"
Rahul Maheshwari57a41552019-10-22 01:02:23 -050077
Sivas SRRffa42692018-01-17 05:17:35 -060078 # Power operation elements needed for power on.
79 header_wrapper = "3"
80 header_wrapper_elt = "3"
81
82 # Power operation elements needed for power operations confirmation.
83 power_operations = "3"
84 warm_boot = "3"
85 cold_boot = "4"
86 shut_down = "5"
87 power_off = "6"
88 confirm_msg = "2"
89 yes = "1"
90 No = "2"
Sivas SRR008dcc62018-02-27 06:34:56 -060091
Rahul Maheshwaridbbf1792018-10-31 05:36:29 -050092 # GUI header elements locators.
93 xpath_select_server_power = "//a[@href='#/server-control/power-operations']"
94
Sivas SRR008dcc62018-02-27 06:34:56 -060095 # Server health elements locators.
Rahul Maheshwari2f8aaa02018-11-29 00:23:09 -060096 xpath_select_server_health = "//a[@href='#/server-health/event-log']"
Gunnar Mills096cd562018-03-26 10:19:12 -050097 xpath_server_health_text = \
Sivas SRR008dcc62018-02-27 06:34:56 -060098 "//*[@id='header__wrapper']/div/div[3]/a[2]/span"
99 xpath_select_refresh_button = \
Anusha Dathatri2513ae52019-09-18 05:18:46 -0500100 "//*[contains(text(),'Refresh')]"
Anusha Dathatridadb75e2019-10-15 04:20:52 -0500101 xpath_event_severity_all = "//*[text()='Filter by severity']/following-sibling::button[1]"
102 xpath_event_severity_high = "//*[text()='Filter by severity']/following-sibling::button[2]"
103 xpath_event_severity_medium = "//*[text()='Filter by severity']/following-sibling::button[3]"
104 xpath_event_severity_low = "//*[text()='Filter by severity']/following-sibling::button[4]"
Sivas SRR008dcc62018-02-27 06:34:56 -0600105 xpath_drop_down_timezone_edt = \
106 "//*[@id='event-log']/section[1]/div/div/button"
107 xpath_refresh_circle = "/html/body/main/loader/div[1]/svg/circle"
108 xpath_drop_down_timezone_utc = \
109 "//*[@id='event-log']/section[1]/div/div/ul/li[2]/button"
Anusha Dathatricae580a2019-10-16 06:17:19 -0500110 xpath_event_filter_all = "//*[text()='All events']"
111 xpath_event_filter_resolved = "//*[text()='Resolved events']"
112 xpath_event_filter_unresolved = "//*[text()='Unresolved events']"
Sivas SRR3e1a83b2018-03-12 07:52:07 -0500113 xpath_event_action_bars = \
114 "//*[@id='event__actions-bar']/div[1]/label/span"
115 xpath_event_action_delete = \
116 "//*[@id='event__actions-bar']/div[2]/div[2]/button[1]"
117 xpath_event_action_export = \
118 "//*[@id='event__actions-bar']/div[2]/div[2]/a"
119 xpath_number_of_events = \
120 "//*[@id='event__actions-bar']/div[2]/p[2]/span"
Sivas SRRbe026912018-03-14 11:33:02 -0500121 xpath_mark_as_resolved = \
122 "//*[@id='event__actions-bar']/div[2]/div[2]/button[2]"
123 xpath_events_export = "//*[@id='event__actions-bar']/div[2]/div[2]/a"
124 xpath_event_delete_no = \
125 "//*[@id='event__actions-bar']/div[2]/div[1]/div[2]/button[2]"
126 xpath_event_delete_yes = \
127 "//*[@id='event__actions-bar']/div[2]/div[1]/div[2]/button[1]"
Anusha Dathatricae580a2019-10-16 06:17:19 -0500128 xpath_individual_event_select = "(//*[@class='control__indicator'])[2]"
Sivas SRR2631b632018-04-04 11:33:21 -0500129 xpath_individual_event_delete = \
130 "//*[@id='event__actions-bar']/div[2]/div[2]/button[1]"
Anusha Dathatricae580a2019-10-16 06:17:19 -0500131 xpath_second_event_select = "(//*[@class='control__indicator'])[3]"
Sivas SRR2631b632018-04-04 11:33:21 -0500132 xpath_individual_event_resolved = \
133 "//*[@id='event__actions-bar']/div[2]/div[2]/button[2]"
Sivas SRR1a94d002018-04-06 08:48:58 -0500134 xpath_individual_event_export = \
135 "//*[@id='event__actions-bar']/div[2]/div[2]/a"
Anusha Dathatricae580a2019-10-16 06:17:19 -0500136 xpath_select_all_events = "(//*[@class='control__indicator'])[1]"