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

what is the difference between call to copy action and call to an existing action

5 Answers  


plz anybody tell me how to explain the architecture of one particular project.plz give me answer for this.....RAJESH

7 Answers   TCS, Wipro,


write a qtp script to enter user name & password for flight reservation login page from excel sheet

1 Answers  


There is web page with the webtable,this contains some data, how do you manipulate the data.

2 Answers   Tech Mahindra,


If u r using descriptive programming to identify the object where do u write the script for those objects? do u write it in the expertview? plz do answer its urgent thanks advance.

3 Answers  






what are the challenges you have faced while testing web based application using the automation tools ?

0 Answers  


What exactly is the difference among all the three recording modes.

5 Answers   Accenture,


How to find Operating system information using QTP script?

0 Answers  


what is the difference between action and function

11 Answers   AppLabs, BirlaSoft, Infosys,


Print the Prime numbers in below format only up to 20(Need commas also) 1,2,3,5,7,9,11,13,17,19

0 Answers   Value Labs,


is it possible to change the date format like MM/DD/YY into DD/MM?YY through script in QTP

5 Answers   IBM,


hi,which is the best book to refer QTP 9.2 and Faq's.

2 Answers  


Categories