LeanFT with C#.net
LeanFT Introduction Supported applications Installation of LeanFT Installing the browser extensions Setting up LeanFT project in Visual Studio LeanFT Settings Types of Licenses in LeanFT Object identification center Understanding LeanFT API in C#.Net LeanFT plugin in Visual StudioAutomating windows application Running first test Integrating LeanFT with Visual Studio Unit testing framework Viewing the results of the test Description programming in LeanFT application models regular expressions in LeanFT Web application testing using LeanFT Identifying the elements using xpath and css Firing events Executing JavaScript Calculator automation using LeanFT Notepad Automation using LeanFT Automation of Java Applications Automation of SAP Applications Automation of .Net Applications Visual Relational Identifier Synchronization in LeanFT in C#.Net Assertions in LeanFT Generating reports with screenshots and recordings Converting UFT object repository into application model Keyword driven frameworks Data Driven Frameworks SpecFlowNative objects LeanFT common issues and solutions Comparison of LeanFT with Selenium and Ranorex Difference between HP UFT and LeanFT. LeanFT references and Resources for .NetVisual Relational Identifier in leanft in C sharp
Visual relational identifiers are used to identify the objects in relation with other objects on the screen. Visual relational identifiers feature was added in UFT. LeanFT also supports it and helps us to identify objects relative to x and y axis. We can create Visual relational identifiers (VRI) in 2 ways.- Description programming
- Using application model

var button2 = calculator.Describe<IButton>(
new ButtonDescription
{
NativeClass = "Button",
Vri =
//button 1 is to the left of button 2
{
new Relation
{
TestObject = button1,
HorizontalRelation = HorizontalVriRelation.Left,
},
//button 5 is to above button 2
new Relation
{
TestObject = button5,
VerticalRelation = VerticalVriRelation.Above,
}
}
});
In similar way, we can add relations in Object identification center. Below image shows how we can add VRI properties to identify the test objects using application model editor (Similar to the Object repository manager in UFT/QTP)
Web development and Automation testing
solutions delivered!!