| #!/usr/bin/python | |
| r""" | |
| Contains xpaths and related string constants applicable to all openBMC GUI | |
| menus. | |
| """ | |
| class resource_variables(): | |
| xpath_textbox_username = "//*[@id='username']" | |
| xpath_textbox_password = "//*[@id='password']" | |
| xpath_button_login = "//*[@id='login__submit']" | |
| xpath_button_logout = "//*[@id='header']/a" |