Prerequisites for starting with selenium webdriver? – User friendly Tech help

Whole automation fraternity is crazy about the emerging demand of selenium.Today we are sharing our 1st post on selenium.We are not doing something out-of-box, however we tend to start a basic step towards helping people learn Selenium.Hope our this initiative can guide and mentor our budding automation coders.nnRequirement:- What is required to execute and get…

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 …

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…

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…