11-21-2012 02:45 AM
Hi everyone,
I am looking for two tools for Labwindows.
1) Code coverage
2) GUI automation testing
Do we have a tool to perform GUI testing that can simulate human interaction on the end-user GUI? I am looking for a tool that can test by finding GUI features (for example, click on the Calculate button).
11-22-2012 03:56 AM - edited 11-22-2012 04:17 AM
@Ramesh_Pitchuka you can try using Automa (http://www.getautoma.com/) which is a tool written in Python that lets you automate tasks in the graphical user interface (GUI) using simple commands such as start, click and enter. So, in order to click on the "Calculate" button, all you need to do is start Automa and then input the following:
start("name_or_path_to_the_application_you_are_automating")
click("Calculate")
Automa finds buttons and text fields like a human being would do - by their visible labels/descriptions, not by internal IDs.