LabWindows/CVI

cancel
Showing results for 
Search instead for 
Did you mean: 

Code coverage and GUI automation testing

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

0 Kudos
Message 1 of 2
(3,050 Views)

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

 

0 Kudos
Message 2 of 2
(3,030 Views)