blob: 21f5b3fbefcd9187cc68a8ca8c23c2bd9f54e676 [file] [log] [blame]
Sathyajith M Se6956c02017-08-16 01:50:17 -05001#!/usr/bin/python
2
3r"""
4Contains xpaths and related string constants applicable to all openBMC GUI
5menus.
6"""
7
8class resource_variables():
9
10 xpath_textbox_username = "//*[@id='username']"
11 xpath_textbox_password = "//*[@id='password']"
12 xpath_button_login = "//*[@id='login__submit']"
13 xpath_button_logout = "//*[@id='header']/a"