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 Reusable component is QTP...Anybody can answer it..Thanks in advance...

8 Answers   Siemens,


what is the diff between Procedure and function

3 Answers   iFlex,


What is Object Spy?

7 Answers   JKH, Ordain Solutions,


Suggest and Define a solution for an application whose objects are not recognized by UFT?

0 Answers  


What is the use of "New Property" in "Add properties" of testobject properties in object repository. How can i use "New properties" while writing scripts if i have assign some values to the testobject properties Can anyone help me? plz

0 Answers   Livetek,






How to display the first 3 letters in these "ABCDEFGH" using qtp script?

6 Answers   Oracle,


What is the limitation to XML Checkpoints?

0 Answers  


Hi All, I am a beginner in QTP and have understood the basics of QTP by going through tutorial. I am trying to Automate a HRMIS application, What is the right approach to Automate this application. Kindly answer. Thanks in advance

1 Answers  


Can any one brief some detail on how the shared and action object repository utilized/implemented in a real time project. I already know how to make shared object repositor by saving OR as .tsr extension..I wanted the actual concept of implementation...couple of live examples will be highly appreciated. Thanks

0 Answers  


What is the extension for Recovery scenario?

2 Answers  


what is batch testing?

1 Answers  


What is dynamic arrays

1 Answers   Patni,


Categories