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.
2.9 KiB
2.9 KiB
<html>
<head>
</head>
</html>
In [ ]:
*** Settings ***
Documentation Simple example using SeleniumLibrary.
Library SeleniumLibrary
*** Variables ***
${LOGIN URL} http://localhost:7272
${BROWSER} Chrome
*** Test Cases ***
Valid Login
Open Browser To Login Page
Input Username demo
Input Password mode
Submit Credentials
Welcome Page Should Be Open
[Teardown] Close Browser
*** Keywords ***
Open Browser To Login Page
Open Browser ${LOGIN URL} ${BROWSER}
Title Should Be Login Page
Input Username
[Arguments] ${username}
Input Text username_field ${username}
Input Password
[Arguments] ${password}
Input Text password_field ${password}
Submit Credentials
Click Button login_button
Welcome Page Should Be Open
Title Should Be Welcome Page
Failed to start the Kernel.
Kernel Python 3.9.13 64-bit is not usable. Check the Jupyter output tab for more information.
View Jupyter <a href='command:jupyter.viewOutput'>log</a> for further details.
In [ ]:
Failed to start the Kernel.
Kernel Python 3.9.13 64-bit is not usable. Check the Jupyter output tab for more information.
View Jupyter <a href='command:jupyter.viewOutput'>log</a> for further details.