harbor/tests/resources/Test-Example/Test.robot
danfengliu 3b8a2890f9 Upgrade robot-framework and Selenium library
1. Upgrade robot-framework to 3.1 and Selenium library to 4.4.0.
2. Fix a registry issue for clear filter text input.

Signed-off-by: danfengliu <danfengl@vmware.com>
2020-08-06 07:25:53 +00:00

28 lines
806 B
Plaintext

*** Settings ***
Documentation Harbor BATs
Resource ../Util.robot
*** Variables ***
${HARBOR_URL} https://${ip}
${HARBOR_ADMIN} admin
${HARBOR_PASSWORD} Harbor12345
*** Test Cases ***
# For Windows
Test Case - Example For Windows
Open Browser https://localhost:4200 Chrome
Retry Element Click xpath=//clr-dropdown/button
Retry Element Click xpath=//clr-dropdown/clr-dropdown-menu/a[contains(., 'English')]
# your case starts =====================================
# your case ends ======================================
Close Browser
# For Linux
Test Case - Example For Linux
init chrome driver
# your case starts =====================================
# your case ends ======================================
Close Browser