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…