Answer Posted / nandankumar
Parameterizion is the process of replacing the constant
values with the parameters or variables in order to
increase the scope of the test.
Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
How to do the scripting. Are there any inbuilt functions in QTP? What is the difference between them? How to handle script issues?
How to replay a script in qtp?
How you can replace string in qtp?
How to read a text file from QC using QTP. I would like to do something like this. But instead read a file from QC and NOT from my local drive. Set fso = CreateObject("Scripting.FileSystemObject") Set InputFile = fso.OpenTextFile("C:\test.txt", ForReading) Thanks
What is qtpro? What is a quick test professional?
Can we run test with out adding object in object repository? How it is possible?
Please Don't mind .i want in detail the real time process i.e in each document what it contains.
in data driven testing for performing operations which method is easy from manual test data,keyword view,or from database.and why?
1.Qtp suppots Unix& linx or not 2why qtp suppots shell script.
What are the methods of the TextStream object that are used for reading from a text file?
Hi ,Can any one pleas explain how to test splash objects using QTP?
Is there anyway to automatically update the Datasource name in Database Checkpoints object when we migrate tests to a new release?
What are the Disadvantages of shared object repository?
What is optional step in qtp? How you can add optional step in qtp?
when I try to run below script in QTP "totalPages" value is 2. But i am getting error message (Type mismatch: 'totalPages' Line (): "For i=1 to totalPages".) totalPages=Browser("Name:=User").Page("Title:=User").WebElem ent("innertext:=of.*").GetROProperty("InnerText") msgbox totalPages For i=1 to totalPages rnum=Browser("Name:=User").Page("Title:=User").WebTa ble("column names:=User Name;ID;Last Name;First Name").GetRowWithCellText("store4") If rnum>0 Then r=rnum Exit for End If Browser("Name:=User").Page("Title:=User").WebElement ("html tag:=A","x:=471").Click MsgBox "Exit" Next