blob: 05ca46a8490e109bea4ca65a2becfa60b05dc5a3 [file] [log] [blame]
*** Settings ***
Documentation Test Open BMC GUI BMC host information under GUI Header.
Resource ../../lib/resource.robot
Suite Setup Suite Setup Execution
Suite Teardown Close Browser
*** Variables ***
${xpath_select_server_control} //*[@id="header__wrapper"]/div/div[2]/p[2]
*** Test Cases ***
Verify IP address
[Documentation] Verify BMC IP address displayed in GUI header.
[Tags] Verify_IP_address
# NOTE: gui_displayed_ip can be either a host name or an IP address.
# (e.g. "machinex" or "xx.xx.xx.xx").
${gui_displayed_ip}= Get Text ${xpath_select_server_control}
Should Contain ${gui_displayed_ip} ${OPENBMC_HOST}
*** Keywords ***
Suite Setup Execution
Open Browser With URL ${obmc_gui_url}
Login OpenBMC GUI ${OPENBMC_USERNAME} ${OPENBMC_PASSWORD}