what is the exact Diff. Between Test and Component in QTP?
Answer / subhan.qa
Test: is a collection of steps organized in to one or more
actions,which are used to verify that your application
performs correctly or not.
component : A collection of steps representing single task
in your application.Business components(also known as
components)are combined into specific scenarios to build
business process tests in mercury quality center with
business process testing.
| Is This Answer Correct ? | 1 Yes | 0 No |
What is the difference between QTP 8.2 and QTP 9.2
how to select particular value from the combobox in the current page which is entred in the previous page editbox after parameterization?
What are the enhancements u did after recording ur script?
To count the no of links present in the yahoo home page i have written the script like this Set fileSysObject=createobject("Scripting.FileSystemObject") Set linksFileName=fileSysObject.opentextfile ("D:\samplelinkfile.txt",2,true) Set linkDescObj=description.Create linkDescObj("micclass").value="Link" Set noOfLinks=browser("yahoo").Page("Yahoo! India").ChildObjects(linkDescObj) For i=0 to noOfLinks.count-1 linkName=noOfLinks(i).getROProperty("name") linksFileName.writeline(linkName) Next linksFileName.close Set fileSysObject=nothing While running the script it showing error that object "yahoo"isnot found in the object repository. Is there any setting before running the script? if yes what is the steps for it.Im using QTP9.0
what is smart identification?
What phases are involved in testing an application in qtp?
Hi. plz expalin abouit SetToProperty, SetRoProperty, GetToProperty, GetRoProperty,GetToPrperties. with examples.
what do u mean by test harnesses in qtp?
Which statement will use for close an action in QTP?
Hi, I got error message as "object does not support this property or method: "Test.Actions" when i execute the following line of script on QTP 9.0 Dim qtApp, qtRep Set qtApp = CreateObject("QuickTest.Application") Set qtRep = qtApp.Test.Actions("Action1").ObjectRepositories Can anyone tell me where i am wrong.
Using Regular expression in Date format DD/MM/YYYY (0[1-9]|[12][0-9]|3[01])/(0[1-9]|1[12])/([0-9]{4}) in this regular expression year 0000 also accepted.I need atleast any one single digit must be nonzero value (like 0009,1000,0034)
How to handle the exceptions using recovery secnario manager in Qtp?