Write the code for select the 5 values from drop down list.
drop down list having the 10 values.
Answers were Sorted based on User's Feedback
we can select more than one value from drop own list by
using "extendedselect" option
Browser(" ").Page("").WebList("").Select " first item"
Browser(" ").Page("").WebList("").extendeSelect "#1"
Browser(" ").Page("").WebList("").extendedSelect "#2"
Browser(" ").Page("").WebList("").extendedSelect "#3"
Browser(" ").Page("").WebList("").extendedSelect "#4"
or
if the items are consecutive, then
for i=0 to 4
Browser(" ").Page("").WebList("").extendedSelect ("#"&i)
if i am worng pls correct me
| Is This Answer Correct ? | 5 Yes | 2 No |
Answer / ashish srivastava
Copy and paste the Below code
dim CountItem
countItem=Browser().Page().Weblist().GetROProperty("Itemcount")
For i = 1 to CountItem
Browser(). Page(). Weblist().Select i
if i >5 then
Browser(). Page(). Weblist().ExtentedSelect i
end If
Next
| Is This Answer Correct ? | 4 Yes | 2 No |
Answer / deven
Set WShShell = CreateObject("WScript.shell")
WShShell.SendKeys "{Down}", True
WShShell.SendKeys "{Down}", True
WShShell.SendKeys "{Down}", True
WShShell.SendKeys "{Down}", True
WShShell.SendKeys "{Down}", True
WShShell.SendKeys "{Enter}"
| Is This Answer Correct ? | 3 Yes | 1 No |
Answer / deven
Dim cMethodcount,cme
cMethodcount = Browser("IAS").Page("IAS").Frame("WorkFrame").WebList("CalcMethod").GetROProperty("items Count")
For cme = 1 to cMethodcount -1
Browser("IAS").Page("IAS").Frame("WorkFrame").WebList("CalcMethod").Select(cme)
If Instr(Browser("IAS").Page("IAS").Frame("WorkFrame").WebList("CalcMethod").GetROProperty("selection"),datatable.Value("CalculationMethod","dtAManagement")) Then
Exit for
End If
Next
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / balaji
For eg:If the weblist contains some x no. of values and if
we want to select only 10 out of it then
i=browser(..).Page(..).weblist(...).Getitemscount()
For j=0 to i
if j<5 then
browser(..).Page(..).weblist(...).select j
end if
next
This code will retrieve only the first 5 values
| Is This Answer Correct ? | 2 Yes | 5 No |
Answer / ram
Hi, I think if the object is dropdown(Combobox) we cannot select more than one value at a time.
please let me know if I am wrong.
Thanks in advance.
Ram
| Is This Answer Correct ? | 1 Yes | 4 No |
which command u will use to access the application through descriptive programing?
How can we log a defect in Testdirector from Q.T.P ?
Is there any site to download QTP....otherwise tell me the way how to get the QTP sofware??????????????????? Thnx in advance
I installed QTP 9.5 on vista. Can someone please provide me the license key of the same. Thanks, Avi
If the object property is changing very frequently, what was your approach?
Hi Friends, I worked with 8.2 not with 9.2. Please help me in this prob. I created one script and recorded some think and save as Test 1 then I opened process--open the object repository manager. Switch to file->save->give some name->save as Objectrepo1.tsr file. (This is the global repository file.) Then I went to object repository->tools-> associate repository ->click + icon ->open the previously saved Objectrepo1.tsr file. This is the global repository Now I created one more script and save as Test 2. In this script I am calling script with the Help of "Call of existing action" and I executed but QTP is not able to execute B’cos it is QTP is not able to read the Object Repository of Test 1. Please let me know why? Once I made Script 1 as a shared Obj. Repository so it would not give any Problem. Right?
Hi, I am new into the field of testing and I need to know how can I begin automating the testing of Mainframe applications using QTP. Can anyone help me?
Explain the use of action split in qtp?
1. How to capture data from images in QTP and produce them in Excel sheet
Are You using any frame work? What is that? Explain about that.
How can I replace all the text from the QTP script with some other text.
how to evalute defects in QTP script?