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

Tell me about your project? please help me how to tell about insurance project

0 Answers   Cap Gemini,


What is keyword driven Testing Framework. Anybody can explain it in details... Pls anybody can give the answer.. Thanks in advance...

1 Answers   Navis,


anyone can explain Diff B/w Actions and Functions

2 Answers  


how to write vbscript on web applications in qtp. explian with one example?

4 Answers   Wipro,


Why you are Using Descriptive programming instead of Object Repository?

11 Answers  






what are the different kinds of frameworks in automation?

1 Answers   Accenture,


any one can send me the concepts of qtp

0 Answers  


When can shared object repository fails?

4 Answers   L&T, TCS,


how can u find the syntax errors or other script errors in your test during the execution of your QTP Test - (i.e., not after the execution/test run finished, but before finishing the test run)

2 Answers   HCL,


what is test data

4 Answers   Wipro,


Hi,i have 3 years of experience in manual and Automation qtp.present i am searching for job in automation qtp 2Yrs,How to Explain the interviwer Roles and Responsibilites.please help me.

1 Answers  


Hi let me ask one questin 1.How to use outputof the one function input to the another function pls give the script for above 2.what is the purpose of action parameter , how to create it

2 Answers  


Categories