Similar Posts
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…
Best and affordable editor for writing visual Basic code?? – User friendly Tech help
What is your favorite VBS editor to write scripts?nIf we search vb editor on Google you would find thousand of suggestions like notepad++,vbsedit and many more fancy IDE.But sometimes there are situations, like due to organization compliance policies or some other reasons, that we don’t have access to these editors .Then what to do in that…
How to Re-Run Test in ALM on failure? – User friendly Tech help
Incase we start our search for any issue on ALM; it is really arduous to find something relevant and meaningful. Furthermore there is a scarcity of website addressing ALM issues or help. So we thought of sharing an article pertaining to “Re-Run of Test case in Test set in ALM in case of failure”. n…
Easy way to calculate Return on Investment in Automation – User friendly Tech help
Automation of software testing process always sounds good to Quality Engineer (QE) managers. Intuitively, you see that creating an automated test one time and then running it hundreds or thousands of times will enable you to expand test coverage, find defects earlier, and focus manual test effort where it is really needed. n n n…
How to implement Highlight in Selenium WebDriver? – User friendly Tech help
Highlight is the most prominent feature used in Object Spy in UFT/QTP. But the question comes into our mind can we have the same facility in Selenium also?.nnAnswer is YES!!n n n n n n n I want to highlight object in selenium n n n Why we use Highlight?nHighlight plays crucial role in debugging…
Image-based object identification in UFT(Insight Recording) – User friendly Tech help
This is my first video on UFT, hope all the automation lovers gain something into the practical aspect of new feature (Image based identification ). n Please share your feedback or suggestions on [email protected] friends voice quality is not as good, i need to improve on my recorder thing .nnnJust a Brief summary of topics…