White Library tutorial for windows application automation

Quick overview Pr-requisites Reference to the keywords Basic script Conclusion Pr-requisites: Python Robot framework White library Make sure you have below mentioned are already installed on your system. Reference to the keywords If you need to know how to use robot framework - check this blog White Library keywords - click here How to find element locators so we can use them in this automation Basic script *** Settings *** Documentation Notepad automation using WhiteLibrary. Library WhiteLibrary *** Variables *** ${APPLICATION_LOCATION} C:/Windows/notepad.exe *** Test Cases *** Open Notepad And Create A File Launch Application ${APPLICATION_LOCATION} Sleep 3s #wait time to notepad launch Attach Window Untitled - Notepad Input Text To Textbox text=Text Edito...