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 .NetJava app automation in leanft in C sharp
We can automate the Java applications developed in AWK and Swing. You need to ensure 2 things before you start the automation of Java based applications.

using Microsoft.VisualStudio.TestTools.UnitTesting;
using HP.LFT.SDK;
using System.Diagnostics;
using HP.LFT.SDK.Java;
namespace LeanFtTestProject1
{
[TestClass]
public class JavaAppTest : UnitTestClassBase<NotepadTest>
{
[ClassInitialize]
public static void ClassInitialize(TestContext context)
{
GlobalSetup(context);
}
[TestInitialize]
public void TestInitialize()
{
}
[TestMethod]
public void TestMethod1()
{
// Launch Java Application
var javaAppProcess = new Process { StartInfo = { FileName = "java", Arguments = "-jar myJavaApp.jar" } };
javaAppProcess.Start();
// Find main Java Window
var window = Desktop.Describe<IWindow>(new WindowDescription
{
Title = "Bus App",
Index = 0
});
//Find the checkbox of in the Java Window
var checkBox = window.Describe<ICheckBox>(new CheckBoxDescription
{
AttachedText="C1"
});
checkBox.SetState(CheckedState.Checked);
}
[TestCleanup]
public void TestCleanup()
{
}
[ClassCleanup]
public static void ClassCleanup()
{
GlobalTearDown();
}
}
}
Web development and Automation testing
solutions delivered!!