Posts

White Library tutorial for windows application automation

Image
 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...

How to use Accessibility Insights to locate elements on windows applications

Image
 In short Download and install the application Use inspector to locate the target element Check different properties Limitations Download and install the application Visit the official website and download the application for windows                website -  Accessibility Insights for windows Open the application, here is how it looks, there are 3 important sections we need to know here- Inspect On/Off button Elements section Properties section Accessibility Insights- Use inspector to locate the target element Open the target application that you want to inspect elements for automation. Move the mouse to the element which you want to inspect. Say. The text area section where we can write the content. When you see the inspector box(blue border) covers the full element, move the mouse pointer quickly to the accessibility insights window to capture the property for the element. Check different properties Here you can see many properti...