Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
what is the use of resetall?
#3
Solved: 11 Years, 3 Months, 3 Weeks ago
Hi supputuri,
please check the text in bold. The following is a script to show all property objects from a browser and report it in a log.
Code:
Set oDesc=Description.Create  
  
Set qtApp = CreateObject("QuickTest.Application")  
Set qtIdent = qtApp.Options.ObjectIdentification  
[b]qtIdent.ResetAll  
[/b]  
set objList=browser("micclass:=Browser").page("micclass:=Page").ChildObjects(oDesc)  
  
For iCounter=0 to objList.count-1  
objList(iCounter).highlight  
oClassName=objList(iCounter).getroproperty("micclass")  
  
Set qtObject = qtIdent.Item(oClassName)  
set PropColl=qtObject.AvailableProperties  
print "*******************************************************"  
For oPropCount=1 to PropColl.count  
  print PropColl.item(oPropCount) & ":="& objList(iCounter).getroproperty(PropColl.item(oPropCount))  
Next  
print "*******************************************************"  
Next
Reply


Messages In This Thread
what is the use of resetall? - by soumya - 12-02-2011, 10:14 PM
RE: what is the use of resetall? - by supputuri - 12-02-2011, 10:39 PM
RE: what is the use of resetall? - by soumya - 12-02-2011, 10:54 PM
RE: what is the use of resetall? - by supputuri - 12-04-2011, 01:58 AM
RE: what is the use of resetall? - by soumya - 12-04-2011, 02:22 PM

Forum Jump:


Users browsing this thread: 1 Guest(s)