Can Any One Write How to Write the Script for Child Objects
Answers were Sorted based on User's Feedback
Answer / deven
Dim obj_ChkDesc
Set obj_ChkDesc=Description.Create
obj_ChkDesc(“html tag”).value = “INPUT”
obj_ChkDesc(“type”).value = “checkbox”
Dim allCheckboxes, singleCheckBox
Set allCheckboxes = Browse(“Browser”).Page
(“Page”).ChildObjects(obj_ChkDesc)
For each singleCheckBox in allCheckboxes
singleCheckBox.Set “ON” Next
Note: It will check all the check boxes on the page with
Child object
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / sandeepguttikonda
Child Objects are used to perform the operations on similar
data.
Example: to get the total number of link in a Page:
And we can perform this by using the below code:
/* Creating the description object*/
Set oDescFrame = Description.Create
oDescFrame("micclass").Value = "links"
Set Links_Count = Browser("name:="&Browsername).page
("title:="&Pagetitle).ChildObjects(oDescFrame)
Msgbox &Links_count.count
This will display the total number of links in a page.
Please let me know if you need any further info.
Thanks.
Regards,
Sandeep Guttikonda
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / manohar
Sorry , Actuvally i want the Example script for Using the
Child objects.
Iam not sure of using the Child Objects . I know the script
that which you had written for Fikle system Objects.
| Is This Answer Correct ? | 0 Yes | 2 No |
Answer / kanda
Here i am giving one example to create New file in New
Folder and to write a "Hello World" in that file
File System Object Model
----------------------------
set fso =createobject("scripting.filesystemobject")
set newfolder = fso.createfolder("C:\QTP",True)
Set newfile = newfolder.createtextfile("C:\QTP\Test1",True)
newfile.writeline("Hello World")
newfile.close
Try with tis..I hope it will work
| Is This Answer Correct ? | 1 Yes | 4 No |
Is it possible to return multiple values from a function..? Then how..?
How does QTP identifies the object in the application?
Can we test internet application using QTP?
why use Description programming? what is advantages and disadvantage of this methods?
which tpye of exceptions mostly do we face in QTP
where do you store the test result?
What is ObjectParamater?
how can you describe the basic flow of automation with conditional and programmatic logic?
what is difference between analog and low level recording
what is the exact Diff. Between Test and Component in QTP?
What is the difference between Action and Function.? when both has the same functionaltiy, when do we choose Action and when do we choose Function..??
3 Answers DST Global Solutions,
How to use the object spy in quicktest professional 8.0 version?