You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
679 B
18 lines
679 B
*** 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
|