Created
September 20, 2019 15:57
-
-
Save semutmerah/71ea829bfd357a51b179e1fc6898dc99 to your computer and use it in GitHub Desktop.
How to Create Robot Framework Custom Keyword
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*** Settings *** | |
Library SeleniumLibrary | |
*** Variables *** | |
${BROWSER} Chrome | |
${URL} https://www.facebook.com/ | |
${EMAIL} [email protected] | |
*** Test Cases *** | |
Test Berhasil Login | |
Open Browser ${URL} ${BROWSER} | |
Input Email Login id=login ${EMAIL} | |
*** Keywords *** | |
Input Email Login | |
[Arguments] ${element_locator} ${email_address} | |
Input Text ${element_locator} ${email_address} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment