Jmeter Error :- Cannot have single quote-char in quoted field:[“] ? – User friendly Tech help

Problem:-We used CSV data Set Config element in our Jmeter test to parameterize our request. But we faced the below error in logs:-nnERROR – jmeter.config.CSVDataSet: java.io.IOException: Cannot have single quote-char in quoted field:[“] nnSolution:- nOpen the “CSV Data Set Config” > Set “Allow quoted data?” to False (By default is true) n nWhy this as Jmeter by default will think…

Crack of UFT -11.5

The simplest and safest method to crack UFT is to download it from the link labeled “HP-UFT”. This link provides a 30-day trial version. If you wish to continue using it after the trial period, you would typically need to purchase a license. However, it’s important to note that promoting or using cracked software is…

Robot Framework: – Cannot import name XmlElementHandler Error – User friendly Tech help

After upgrading to the latest version of Robot Framework and RIDE and rerunning existing scripts, we were surprised to get the “Cannot import name XmlElementHandler” nn Solution:- n Step1:- Try to locate the missing file in robot setup that is installed on the system. n In our case it was XmlElementHandler, after some investigation (by…

Answers to UFT interview Questions (Part-3) – User friendly Tech help

Answers:-nn1. Following are the main disadvantages of Shared OR:-nn As this is shared across projects, incase user deletesupdates any of the object by mistake, it results in failure of all the Test scripts with which Shared OR is attached.nnConcurrent issue, Only one user can edit the Shared OR at a time, so in multiple user team…

Meaning of Web Service and Its Key components in SOAP-UI – User friendly Tech help

Scenario :- Understanding concept of Web services, its working and what is a SOAP, UDDI , XML , UDDI . How we can implement SOAP-UI .nnn n n n n n Web Service (Request-Response) n n n nnnSolution :- This video tutorial is created which covers all the basic information of web service and its…

Various techniques to Refresh Browser window in Selenium – User friendly Tech help

Scenario: -We need to refresh the current instance of Application, using Selenium?nn n n n n n Refresh Yourself  n n n nSolution:-nnApproach1:- nUsing “Navigation” commands, we have already read about navigation commands, now we will try to use its methods to refresh the page.nnSyntax:-  n driver.navigate().refresh(); n nApproach2:-nUsing “Get” Commands. We will use “GetCurrentUrl()” command,nThis…

Working with Excel Object Model in UFT – User friendly Tech help

In this video tutorial we are going to discuss, working with Excel in UFT using our “Excel Object Model“.nnTopics discussed:- n n Understanding Excel object model(Application, Workbooks, Worksheet,Cell) n Creating the corresponding objects for accessing Excel objects n Fetching single cell data from excel n Fetching data from complete Excel n Writing data into Excel…

Example Scenarios of GetRoProperty in UFT – User friendly Tech help

1. How to fetch the title of opened browser using UFT? n Variable DeclarationDim sTitle , objDesc ,objBrowser’Creating Description ObjectSet objDesc = Description.Create’Description object is pointing to BrowserobjDesc(“micclass”).value = “Browser”‘Fetching all the opened BrowserSet objBrowser = Desktop.ChildObjects(objDesc)’Taking the tile of the opened browser using GetROPropertyFor iCounter = 0 to objBrowser.Count -1 MsgBox “Title of opened…