Hello Everyone,
Please provide me the practical example of business
component concept of QTP.Like how to create business
component,how to connect the quality center etc....
Thanks in advance,
Gaytri
No Answer is Posted For this Question
Be the First to Post Answer
How can you exit from an action?
I have a list box which contains duplicate values e.g. A,A,A,B,B,B,C,C,C.Now write a code in qtp to test the list box . Scenario #1 : I have to check whether any values are there? Scenario #2 : If duplicate values are there,then how many time it is getting duplicated? Svenario #3 : how can I test presence of items in list box ommiting duplicate values?
How to test the mandatory fields in QTP?
What are the types of object repository?
What is Parameterizing Tests?
In qtp, how you can exit for loop?
how do u handle an object without name using QTP 9.2?
Write a script to delete a specific row in a webtable.
can we install qtp on server machine and do automation of application which is installed on client machine.If yes then how? If no then is there any other automation tool for this (client-server) senario.
how to select the work for complete automation and one more thing when u are going to choose automation
How can I find out whether a word in a string is existed or not for example "QTP IS A POWERFULL TOOL FOR AUTOMATION" How can i find out whether "powerfull" is existed in the above string or not Could anyone answer it?
hi, i was adding the two numbers in qtp scripts but i didn't get the answer. see my below script, i dont know wht is the problem. i passed the value a=3 b= 2, i got the ans 32 instead of 5. i thing the problem is to be c = a+b my mail id karthis4u@gmail.com Dim a, b, c a = inputbox("enter the a ") b = inputbox("enter the b ") c = a + b print c