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



Write the code for select the 5 values from drop down list. drop down list having the 10 values...

Answer / pavani prasad

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

Write the code for select the 5 values from drop down list. drop down list having the 10 values...

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

Write the code for select the 5 values from drop down list. drop down list having the 10 values...

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

Write the code for select the 5 values from drop down list. drop down list having the 10 values...

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

Write the code for select the 5 values from drop down list. drop down list having the 10 values...

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

Write the code for select the 5 values from drop down list. drop down list having the 10 values...

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

Post New Answer

More QTP Interview Questions

How u perform Batch Program in QTP?

3 Answers  


Hi friends I am new in Qtp. now i am Searching on Qtp give real time inter questions with answers.pls help me

1 Answers  


How will you send values to a cell in a webtable using QTP?

2 Answers  


How to database testing by manualy?in my db having 100 records when i am retriving the data from db it shows in frent end 30 records how to find bug using QTP?plz Exp realtimers (Chandana)

7 Answers   Wipro,


How to retrieve the property of an object?

1 Answers  






Explain the concept of object repository?

0 Answers  


How to enter table check points?

2 Answers  


plz explain QTP real time work( Means where you store scripts and how u access scripts next day? where those activities we are maintaining, If By usig VSS how the process in going on , plz explain briefly?

2 Answers   CTS, Tech Mahindra,


Distinguish between manual testing and automation testing

2 Answers   HCL,


Hi all, what is the latest version of QTP?

20 Answers   CTS,


can QTP works on LINUX platfom

2 Answers  


Hi Friendss..., can any body help me.. 1. Tell me your achievements(Technically)..? 2. Tell me your strengths(Technically) and weakness(Technical)..? 3. Why are you looking for change..?

0 Answers   Ness Technologies,


Categories