How you automate test scripts
Answer / william_vijay
we can automate test scripts by means automation reference
model,by which we can automate the qtp iteself
| Is This Answer Correct ? | 0 Yes | 0 No |
If we are record a same web page for 2 times.1st time it is showing 6 objects in the Object Repository and for the 2nd time it is showing like 7 Objects in the Object Repository why it is happening
Can any one explain me what is the procedure to connect the remote desk by using QTP 9.2 ?
how much space occupies in object respository by default?
suppose i give valid user id and password to open an web base application on qtp.how qtp will know itis a valid user id and password
How to use Regular Expressions in QTP? give an example.
10 Answers ABC, Accenture, Ordain Solutions, SCL,
What is the difference betweent test and component?
I am using descriptive programming for my project.when QTP deosn't identity or recognize a object by record and playback method,is it possible to make QTP identify that object using descriptive programming? Note: The object doesn't have unique properties and same properties used in Record and playback are only available, no extra properties are defined.
How many check points are there in QTP and what are they?
is it possible to check the text displayed in the tool tip using QTP? if so, how?
Where should we turn Smart Identification ON in QTP?
now a days which one is using all companies for qtpscript a)Object Repository based script b)Descriptive program based script c)BOTH
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