How to Encyrpt and Decrypt Password in UFT? – User friendly Tech help

 Requirement:-nnWe don’t want to share our application(say Oracle database) login password , but rather encrypt it and while using the SQL query we need it to be decrypted at runtime.nnSolution:-nFirstly we will Encrypt the password and then decrypt it.nEncryption:-nnApproach 1:-nnUsing Crypt utlity Object. nMethod used :- Encrypt n n n n n n Syntax n n n Code:-…

Security testing tools that we should know? – User friendly Tech help

1.nmapn Installation:-n1.Download the .tar filen2. untar, bzip2 -cd nmap-versionXX.tar.bz2 | tar xvf -cd nmap-versionXXXn3.cd nmap-versionn4. ./configuren5.maken6. su rootn7.make install nn If all the steps runs successfully, we have the following console message:-nNMAP SUCCESSFULLY INSTALLED n Check the nmap version, nmap –version n How to find open ports for given server say (50.9.51.65) n nmap -sV…

Working with Regular Expression Object in UFT /QTP. – User friendly Tech help

Today we are going to touch the key concept in Regular Expression i.e “Creation of  Regular Expression object” and using this we’ll search a given pattern in a string.Regular expression is a frequently used concept in Automation WORLD. n nScenario:- To find the existence of a pattern inside a string which is present in Your …

How to do Cross Browser testing using Selenium – User friendly Tech help

What is Cross Browser Testing Concept?nIn today’s world we as users have numerous list of available browsers, which introduces problems for web-application developers. Because web applications are expected to behave consistently across all of these browsers. However, because the standards for client-side technology are still evolving, there is a great deal of inconsistency in how…

Various Synchronization techniques in Selenium – User friendly Tech help

Why Synchronization?nIt is required so that our AUT and testing tool are running in sync with each other.For example if our application is taking time to load but our automation tool commands are running fast,than this would result in error. To make sure selenium/UFT waits for the application controls to load, so that tool can…

Screenshot using Selenium – User friendly Tech help

Scenario:-How we can capture error Screenshot while working with Selenium?n n n n n n n Taking Screenshot of nature using Camera n n n nSolution:-We would achieve it using the TakeScreenshot Interface.nnSyntax:-nn1.Capture Screenshot n File sScreenShot = ((TakesScreenshot)driver).getScreenshotAs(OutputType.FILE); n nOutputType.FILE:- We have used Interface Output and we have taken the screenshot as “File” typenwe…

Understanding Add-in manager in UFT – User friendly Tech help

What is Addin Manager? It is a software which prepares UFT/QTP to provide support for multiple technologies. As we know UFT supports for wide range of environment like Windows (.Net, Java), Web, SAP,Oracle.Thus Addin manager assist UFT to work with various platforms.nnn Example:- n In case we want to automate web application (Say facebook), and…

Robot Framework- Working with Excel Library(Part-1) – User friendly Tech help

In part-1 we would discuss on Installing Excel Library to work with Robot Framework. n True Success is balance. For me, this means Health, Wealth, Happiness. n So I try and get 1% better each week in each of these areas. n Lets learn the robot framework integration with Robot Framework to enhance our skills….