Real meaning of Regular Expression’s(RG’s) – User friendly Tech help

n It is a way of representing data using symbols, which are in the form of special characters like ‘*’,’ +’, ’.’,  ’’.nn Further these characters are used for search of particular pattern in strings. n RG’s in UFT: n These are used in UFT to identify objects and text strings with varying values very useful…

How to close all browsers other than ALM in UFT using Descriptive Programming. – User friendly Tech help

Requirement:– Close all browsers other than Application life cycle (ALM/QC) nn n n n n n Kill browser other than ALM  n n n Solution:– We followed the concept of Descriptive Programming in UFT to achieve the result.nnApproach:– Very simple and straight flow,look for all the opened browsers (Creating DP object ). Incase browser is not…

Synchronization in UFT – User friendly Tech help

We are already done with the synchronization in selenium, today we would discussing the same in UFT.Before starting with the synchronization we would recommend to use Exist,WaitProperty,Sync rather than using Wait. n 1.waitnThis is used when we want UFT to wait for the specified time, so that AUT completes its current operations.It is like pausing…

Implement Robot Framework using RIDE (Part-2) – User friendly Tech help

In our part-1 we learned how to work with  existing test case written as .robot/.txt inside RIDE.nnHere we would learn to implement the robot framework functionality in RIDE itself.Further we would move towards best approach in RF.nDo follow us on  Fb,G+,Twitter, it encourages us to learn and share more.nRequirement:- Enhance our existing test case using…

Running Selenium test case in Google Chrome? – User friendly Tech help

We have already learned to execute selenium test case in Firefox browser . Now we thought of running the same test on “Google Chrome”.nnRequirement:- Executing selenium webdriver test case in Google chrome for the first time.nnSolution:-nWe simply tried to change the previous code and passed the reference of “chromedriver”.nnBefore :-n  WebDriver driver = new FirefoxDriver();nAfter:-n …