Trail version of UFT/QTP asks for License Key? – User friendly Tech help

These days i got lot of queries regarding, “We are not able to install UFT/QTP trail version” and also after installation it asks for “License Key”.nnThus thought of sharing this article with automation lovers so that they are able to handle this issue.nnProblem:– Trail version of UFT/QTP asks for License KeynnSolution :- nPlease follow the following…

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…

How to disable Right Click, using Angular JS? – User friendly Tech help

nRequirement:- We need to disable Right Click on links in our Angular JS Application?nn n n n n n Context-Menu default behaviour n n n nSolution:-nWe wrote a directive to override the default behaviour of “Context Menu”nnFurther we can use this directive to bind specific action on right click, using the contextmenu event.The contextmenu event fires when…

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 …

Understanding Selenium WebDriver Navigation Commands? – User friendly Tech help

After successfully running our first test case on Firefox and Chrome. We are stepping towards grasping the essential navigation commands in Selenium. Thus we are going to discuss about multifarious browser commands that we would be using in our day to day automation testing. n Requirement :- nHow to navigate in Browser using Selenium Webdriver?nnSolution :-nWe…

salesforce – Page 2 – User friendly Tech help

Smart way of working with Salesforce Vlocity Dataraptors STart small but think big Problem- How to improve productivity while working with Dataraptors 1)Always start with creating new version of the dataraptor, it avoids overwriting the existing stable changes, or you can always fall back to previous versions in case your changes don’t work as expected….

Various ways to Reverse String in UFT/QTP using Vbscripting

Scenario: We need to reverse a string without using the Vb-scripting inbuilt function strReverse. Solution 1: Using the “Mid” function to reverse the input string. Example Code: sRev = “UFTHELP, Ur First Testing Help” Msgbox fnReverse(sRev) Public Function fnReverse(sRev) for i = 1 to len(sRev) sNew = mid(sRev,i,1) & sNew next fnReverse = sNew End…