What will be the test script in QTP to test a ComboBox
where a user has to select more than two items????
Answers were Sorted based on User's Feedback
Answer / raj kumar
This is the correct Answar
browser(":: IRCTC :: - Plan My").Page(":: IRCTC :: - Plan My").WebList("day").Select(#1)
browser(":: IRCTC :: - Plan My").Page(":: IRCTC :: - Plan My").WebList("day").ExtendSelect(#2)
| Is This Answer Correct ? | 18 Yes | 6 No |
Answer / unknown
Hey Prasad,
I think you can't select more that one item in the
combobox, it may be list box or something else
| Is This Answer Correct ? | 5 Yes | 3 No |
Hi This Mahesh
I am sending the Descriptive Progarme see below
Function selectWebItem(webListName,ItemName,webItemIndexVal)
ClearDialogs()
strHandle = Window
("RegExpWndClass:=IEFrame","index:=0" ).GetROProperty
("hWnd")
Set gobjBrowser = Browser("hWnd:=" & strHandle)
Set gobjPage = gobjBrowser.Page("index:=1")
gobjPage.Sync
Set objDescription = Description.Create()
objDescription("Class Name").Value = "WebList"
objDescription("html tag").Value = "SELECT"
objDescription("name").Value = webListName
If gobjPage.WebList(objDescription).exist(0) Then
gobjPage.WebList(objDescription).select
ItemName
else
objDescription
("index").value=webItemIndexVal
If gobjPage.WebList(objDescription).exist
(0) Then
gobjPage.WebList
(objDescription).select ItemName
else
testPassCntr=testPassCntr+1
End if
End If
End Function
| Is This Answer Correct ? | 2 Yes | 2 No |
Answer / anil
@ maheshbabu
If want to search an object based on the value from the
dropdown list? For ex: I've a item "one" in the dropdown
list, I want to see if one is existing in the dropdown
list, if yes then i want to perform some action, else say
one does not exist.
how to write code for this in qtp?
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / ramp@oracle
systemutil.Run"path"
Dialog("Title:=Login").WinEdit("AttachedText:=Agent Name:").Set "chaitanya"
Dialog ("Title:=Login").WinEdit("AttachedText:=Password:").Set "mercury"
Dialog ("Title:=Login").winbutton("Text:=OK").Click
Window ("Title:=Flight Reservation").close
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / madhavi
If i am correct, then this is a special type of combobox
where a dropdown list appears after we enter a input, for
eg, after we enter des, then immediatly a drop down list
appears for this combox with all the options whose test has
des in them, we can selecet an option from this list just
like a drop down list and we can select one one option.
even i am looking for a qtp script which can do this
operation. :-(
| Is This Answer Correct ? | 2 Yes | 3 No |
Answer / saravanaraja
we cant select more than one value in Combo Box.
Example: go and check in Ms-Word (Font Selection Combo Box)
| Is This Answer Correct ? | 0 Yes | 2 No |
Answer / xxxx
Look at it might be useful for you
Browser("XXXX").page("page1").WebEdit("editbox").set "dsgagfdsa"
value1=Browser("XXXX").page("page1").WebEdit("editbox").GetROProperty("Text")
Browser("XXXX").page("page1").webButton("Button1").click
Browser("XXXX").page("page2").WebList("List1").select value1
| Is This Answer Correct ? | 3 Yes | 10 No |
Hi... Can anybody help me to write the vbscript for this question..!!! Am having a string "HELLO WORLD", i want to find how many "L"s are there.....????? --> HANEEF <--
I recorded a Web App with a Oracle backend using QTP 9.5 and for some reason the scripts don't play back> What am I missing at this point. I recorded the same Apps under Sybase and they work great. This is Oracle 10g. Why won't my scripts play back.
How would you export a script from one pc to another in qtp?
How to handle dynamic objects in QTP?
How we can call the scripit from another scripit in QTP?,Not a call Action
How will you declare a variable in qtp?
when we open flight reservation.at that time where we found synchronization point() and wait function().i m confused .i want this answer.
Hi Friends, I have an application that is having some options to choose. While doing business transaction I need to select one option among from available options. But here the thing is, we won't get one option which we've chosen already and the available options will get automatically from the system with time basis, moreover each and every option having with various label names respective to that option. So obviously if I run my recorded script will automatically gets fail, even though it got pass at first time. Could anyone please give me appropriate solution for this. I would be greatly obliged with you if you give the solution as soon as possible.
Syntact for how to call one script from another? and Syntax to call one "Action" in another?
What is a Run Time Data table?
what is Function Definition Generator? can any one explain me in details?
Shared Object Repository is preferable while dealing with dynamic objects ok? descriptive prog also same? ok but why descriptive?(only for w/o application)