blob: 0f713de661517bee00023b0668172eb56ed554f1 [file] [log] [blame]
George Keishinge7e91712021-09-03 11:28:44 -05001#!/usr/bin/env python3
Rahul Maheshwari41747da2020-11-17 09:09:52 -06002
3r"""
4Contains xpaths and related string constants applicable for new Vue based OpenBMC GUI.
5"""
6
7
Patrick Williams20f38712022-12-08 06:18:26 -06008class gui_variables:
George Keishing5f1525a2023-02-09 23:23:31 -06009 r"""
10 Base class for GUI related XPATH variables.
11 """
12
Rahul Maheshwari41747da2020-11-17 09:09:52 -060013 # Login page
rramyasr-ind1ae7fa2023-02-20 11:00:41 -060014 xpath_login_hostname_input = "//input[@id='host']"
15 xpath_login_username_input = "//*[@data-test-id='login-input-username']"
16 xpath_login_password_input = "//*[@data-test-id='login-input-password']"
Rahul Maheshwarie5d9c312021-01-31 23:56:20 -060017 xpath_login_button = "//*[@data-test-id='login-button-submit']"
Rahul Maheshwari41747da2020-11-17 09:09:52 -060018 xpath_logout_button = "//*[@data-test-id='appHeader-link-logout']"
19
20 # Overview menu
21 xpath_overview_menu = "//*[@data-test-id='nav-item-overview']"
22
23 # GUI header
Rahul Maheshwarie5d9c312021-01-31 23:56:20 -060024 xpath_root_button_menu = "//*[@data-test-id='appHeader-container-user']"
Rahul Maheshwari41747da2020-11-17 09:09:52 -060025 xpath_profile_settings = "//*[@data-test-id='appHeader-link-profile']"
Patrick Williams20f38712022-12-08 06:18:26 -060026 xpath_server_health_header = (
27 "//*[@data-test-id='appHeader-container-health']"
28 )
29 xpath_server_power_header = (
30 "//*[@data-test-id='appHeader-container-power']"
31 )
Rahul Maheshwari41747da2020-11-17 09:09:52 -060032 xpath_refresh_button = "//*[@data-test-id='appHeader-button-refresh']"
Rahul Maheshwari41747da2020-11-17 09:09:52 -060033
Rahul Maheshwari142642d2021-08-24 00:00:15 -050034 # Logs menu
35 xpath_logs_menu = "//*[@data-test-id='nav-button-logs']"
Rahul Maheshwaribce8f712021-06-01 06:26:48 -050036 xpath_dumps_sub_menu = "//*[@data-test-id='nav-item-dumps']"
rramyasr-in305d23a2022-01-19 01:32:04 -060037 xpath_dumps_header = "//h1[text()='Dumps']"
Rahul Maheshwari41747da2020-11-17 09:09:52 -060038 xpath_event_logs_sub_menu = "//*[@data-test-id='nav-item-event-logs']"
rramyasr-ind3b3fcd2022-11-18 10:41:14 -060039 xpath_event_logs_heading = "//h1[contains(text(), 'Event logs')]"
dnirmala619b76c2023-03-17 02:40:55 -050040 xpath_event_search = "//input[@placeholder='Search logs']"
Patrick Williams20f38712022-12-08 06:18:26 -060041 xpath_progress_logs_sub_menu = (
42 "//*[@data-test-id='nav-item-post-code-logs']"
43 )
Rahul Maheshwari41747da2020-11-17 09:09:52 -060044
Rahul Maheshwari142642d2021-08-24 00:00:15 -050045 # Hardware status menu
Patrick Williams20f38712022-12-08 06:18:26 -060046 xpath_hardware_status_menu = (
47 "//*[@data-test-id='nav-button-hardware-status']"
48 )
49 xpath_inventory_and_leds_sub_menu = (
50 "//*[@data-test-id='nav-item-inventory']"
51 )
Rahul Maheshwari142642d2021-08-24 00:00:15 -050052 xpath_sensor_sub_menu = "//*[@data-test-id='nav-item-sensors']"
Patrick Williams20f38712022-12-08 06:18:26 -060053 xpath_inventory_and_leds_heading = (
54 "//h1[contains(text(), 'Inventory and LEDs')]"
55 )
Rahul Maheshwari142642d2021-08-24 00:00:15 -050056
57 # Operations menu
58 xpath_operations_menu = "//*[@data-test-id='nav-button-operations']"
Patrick Williams20f38712022-12-08 06:18:26 -060059 xpath_factory_reset_sub_menu = (
60 "//*[@data-test-id='nav-item-factory-reset']"
61 )
Rahul Maheshwari142642d2021-08-24 00:00:15 -050062 xpath_firmware_update_sub_menu = "//*[@data-test-id='nav-item-firmware']"
Rahul Maheshwari41747da2020-11-17 09:09:52 -060063 xpath_reboot_bmc_sub_menu = "//*[@data-test-id='nav-item-reboot-bmc']"
rramyasr-inc7487402022-06-28 12:23:50 -050064 xpath_host_console_sub_menu = "//*[@data-test-id='nav-item-host-console']"
Patrick Williams20f38712022-12-08 06:18:26 -060065 xpath_server_power_operations_sub_menu = (
66 "//*[@data-test-id='nav-item-server-power-operations']"
67 )
rramyasr-in70178952022-06-17 06:17:30 -050068 xpath_host_console_heading = "//h1[text()='Host console']"
rramyasr-ind3b3fcd2022-11-18 10:41:14 -060069 xpath_firmware_heading = "//h1[contains(text(), 'Firmware')]"
Rahul Maheshwari142642d2021-08-24 00:00:15 -050070
71 # Settings menu
72 xpath_settings_menu = "//*[@data-test-id='nav-button-settings']"
rramyasr-ind3b3fcd2022-11-18 10:41:14 -060073 xpath_network_heading = "//h1[text()='Network']"
Rahul Maheshwari142642d2021-08-24 00:00:15 -050074 xpath_date_time_sub_menu = "//*[@data-test-id='nav-item-date-time']"
75 xpath_network_sub_menu = "//*[@data-test-id='nav-item-network']"
Patrick Williams20f38712022-12-08 06:18:26 -060076 xpath_power_restore_policy_sub_menu = (
77 "//*[@data-test-id='nav-item-power-restore-policy']"
78 )
Megha G N2a31e512023-01-18 04:23:20 -060079 xpath_static_dns = "//h2[text()='Static DNS']"
80 xpath_dns_servers_toggle = (
81 "//*[@data-test-id='networkSettings-switch-useDns']"
82 )
83 xpath_add_dns_ip_address_button = (
84 "//button[contains(text(),'Add IP address')]"
85 )
86 xpath_input_static_dns = "//*[@id='staticDns']"
Rahul Maheshwari41747da2020-11-17 09:09:52 -060087
Rahul Maheshwari142642d2021-08-24 00:00:15 -050088 # Security and access menu
Patrick Williams20f38712022-12-08 06:18:26 -060089 xpath_secuity_and_accesss_menu = (
90 "//*[@data-test-id='nav-button-security-and-access']"
91 )
Rahul Maheshwari142642d2021-08-24 00:00:15 -050092 xpath_sessions_sub_menu = "//*[@data-test-id='nav-item-sessions']"
Rahul Maheshwari41747da2020-11-17 09:09:52 -060093 xpath_ldap_sub_menu = "//*[@data-test-id='nav-item-ldap']"
Patrick Williams20f38712022-12-08 06:18:26 -060094 xpath_user_management_sub_menu = (
95 "//*[@data-test-id='nav-item-user-management']"
96 )
Rahul Maheshwari142642d2021-08-24 00:00:15 -050097 xpath_policies_sub_menu = "//*[@data-test-id='nav-item-policies']"
98 xpath_certificates_sub_menu = "//*[@data-test-id='nav-item-certificates']"
99
100 # Resource management menu
Patrick Williams20f38712022-12-08 06:18:26 -0600101 xpath_resource_management_menu = (
102 "//*[@data-test-id='nav-button-resource-management']"
103 )
Rahul Maheshwari142642d2021-08-24 00:00:15 -0500104 xpath_power_sub_menu = "//*[@data-test-id='nav-item-power']"
sarandev366c4be22023-03-07 06:56:51 -0600105 xpath_power_link = "//a[@href='#/resource-management/power']"
rramyasr-ind3b3fcd2022-11-18 10:41:14 -0600106 xpath_power_heading = "//h1[contains(text(), 'Power')]"
Nandish-Mattib8b82c52023-02-28 05:42:05 -0600107 xpath_success_message = "//*[contains(text(),'Success')]"
Anusha Dathatri54edcbc2020-12-10 04:04:08 -0600108
109 # Profile settings
110 xpath_default_UTC = "//*[@data-test-id='profileSettings-radio-defaultUTC']"
Patrick Williams20f38712022-12-08 06:18:26 -0600111 xpath_profile_save_button = (
112 "//*[@data-test-id='profileSettings-button-saveSettings']"
113 )
sarandev34d1a7372023-01-27 02:10:38 -0600114 xpath_profile_settings_link = "//a[contains(text(),'Profile Settings')]"
sarandev3ff7f34b2023-01-16 05:09:20 -0600115 xpath_profile_settings_heading = "//h1[text()='Profile settings']"
116 xpath_browser_offset = (
117 "//*[@data-test-id='profileSettings-radio-browserOffset']"
118 )
sarandev34d1a7372023-01-27 02:10:38 -0600119 xpath_browser_offset_textfield = (
120 xpath_browser_offset + "/following-sibling::*"
121 )
Patrick Williams20f38712022-12-08 06:18:26 -0600122 xpath_input_password = (
123 "//*[@data-test-id='profileSettings-input-newPassword']"
124 )
125 xpath_input_confirm_password = (
126 "//*[@data-test-id='profileSettings-input-confirmPassword']"
127 )
Rahul Maheshwari142642d2021-08-24 00:00:15 -0500128
129 # Common variables
rramyasr-in2da4d6f2022-11-07 04:31:24 -0600130 xpath_save_settings_button = "//button[contains(text(),'Save')]"
Ashwini Chandrappa233d9652021-08-04 09:56:30 -0500131 xpath_confirm_button = "//button[contains(text(),'Confirm')]"
meghagn2052fdd2021-12-07 02:42:31 -0600132 xpath_cancel_button = "//button[contains(text(),'Cancel')]"
meghagn97f7eb42022-03-02 02:59:35 -0600133 xpath_add_button = "//button[normalize-space(text())='Add']"
Patrick Williams20f38712022-12-08 06:18:26 -0600134 xpath_page_loading_progress_bar = (
135 "//*[@aria-label='Page loading progress bar']"
136 )
rramyasr-in2da4d6f2022-11-07 04:31:24 -0600137
rramyasr-in732cc3f2022-11-16 05:30:57 -0600138 # Reboot sub menu
meghagn2052fdd2021-12-07 02:42:31 -0600139 xpath_reboot_bmc_heading = "//h1[text()='Reboot BMC']"
140 xpath_reboot_bmc_button = "//button[contains(text(),'Reboot BMC')]"
141 xpath_confirm_bmc_reboot = "//*[@class='btn btn-primary']"