Skip to content

Instantly share code, notes, and snippets.

@semutmerah
Created September 20, 2019 15:57
Show Gist options
  • Save semutmerah/71ea829bfd357a51b179e1fc6898dc99 to your computer and use it in GitHub Desktop.
Save semutmerah/71ea829bfd357a51b179e1fc6898dc99 to your computer and use it in GitHub Desktop.
How to Create Robot Framework Custom Keyword
*** Settings ***
Library SeleniumLibrary
*** Variables ***
${BROWSER} Chrome
${URL} https://www.facebook.com/
${EMAIL} apapun@apapun.com
*** 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