|
|
|
@ -0,0 +1,18 @@ |
|
|
|
*** Settings *** |
|
|
|
Library urllib3 |
|
|
|
Library Collections |
|
|
|
Library RequestsLibrary |
|
|
|
Library DatabaseLibrary |
|
|
|
Library Selenium2Library |
|
|
|
|
|
|
|
*** Keywords *** |
|
|
|
User open Chrome with the url "${URL}" |
|
|
|
Open Browser ${URL} Chrome |
|
|
|
|
|
|
|
User Login System with "${account}" and "${password}" |
|
|
|
Input Text xpath=//*[@id="app"]/div/div/div[2]/div/div/div/div[2]/input ${account} |
|
|
|
Input Text xpath=//*[@id="app"]/div/div/div[2]/div/div/div/div[2]/div[2]/input ${password} |
|
|
|
Click Button xpath=//*[@class="ant-btn ant-btn-primary ant-btn-block"] |
|
|
|
Evaluate time.sleep(2) time |
|
|
|
${title} get title |
|
|
|
Close Browser |