- divya_agsrdkProfessional
- Posts : 93
Join date : 2013-01-17
To count the number of elements in a combo box.
Wed Feb 27, 2013 4:43 pm
Hi,,
Using selenium IDE, how it is possible to count the number of elements in a combo box.
Any solution?
Using selenium IDE, how it is possible to count the number of elements in a combo box.
Any solution?
- adityacProfessional
- Posts : 101
Join date : 2013-01-17
Re: To count the number of elements in a combo box.
Wed Feb 27, 2013 5:34 pm
for drop down
Command
Select
Target
Xpath/id
Value
index/option which u want 2 select u can give
Command
Select
Target
Xpath/id
Value
index/option which u want 2 select u can give
- divya_agsrdkProfessional
- Posts : 93
Join date : 2013-01-17
Re: To count the number of elements in a combo box.
Wed Feb 27, 2013 5:53 pm
wt dis xpath/id means .. i dont knw abt it...
whr u ll get xpath..
whr u ll get xpath..
- adityacProfessional
- Posts : 101
Join date : 2013-01-17
Re: To count the number of elements in a combo box.
Wed Feb 27, 2013 5:57 pm
u need 2 hav firebug addin to find xpath/id
- divya_agsrdkProfessional
- Posts : 93
Join date : 2013-01-17
Re: To count the number of elements in a combo box.
Wed Feb 27, 2013 6:01 pm
k.. by recording any options r there?
wt s xapth.. unique id of the element?
wt s xapth.. unique id of the element?
- adityacProfessional
- Posts : 101
Join date : 2013-01-17
Re: To count the number of elements in a combo box.
Wed Feb 27, 2013 6:04 pm
yaa u cn get xpath by recording..... bt writing xpath is good in practice
- ccoxMaster
- Posts : 205
Join date : 2012-01-06
Age : 39
Location : Denver, CO
Re: To count the number of elements in a combo box.
Wed Feb 27, 2013 10:18 pm
storeXpathCount could probably do what you are asking for
- divya_agsrdkProfessional
- Posts : 93
Join date : 2013-01-17
Re: To count the number of elements in a combo box.
Fri Mar 01, 2013 10:11 am
how xpath can get by recording... this is my pgm... how to get the id of dropdown list
- divya_agsrdkProfessional
- Posts : 93
Join date : 2013-01-17
Re: To count the number of elements in a combo box.
Fri Mar 01, 2013 10:19 am
i tried like this by entering,
storeXpathCount css=html a
echo ${a}
Got ERROR:
[error] Locator does not use XPath strategy: css=html
storeXpathCount css=html a
echo ${a}
Got ERROR:
[error] Locator does not use XPath strategy: css=html
- ccoxMaster
- Posts : 205
Join date : 2012-01-06
Age : 39
Location : Denver, CO
Re: To count the number of elements in a combo box.
Fri Mar 01, 2013 11:40 am
To use the storeXPathCount command you have to use XPath...not CSS. Your combo box does not have an ID. This makes it difficult to identify the elements in it. The commands you could use are this:
storeXPathCount | //div[@id='p5028']/div/div/div['+x+']/div/select| x
echo| ${x}
storeCssCount | css=select| x
echo | ${x}
Unfortunately,I tried both of these commands and they only return '1'.
storeXPathCount | //div[@id='p5028']/div/div/div['+x+']/div/select| x
echo| ${x}
storeCssCount | css=select| x
echo | ${x}
Unfortunately,I tried both of these commands and they only return '1'.
- ccoxMaster
- Posts : 205
Join date : 2012-01-06
Age : 39
Location : Denver, CO
Re: To count the number of elements in a combo box.
Fri Mar 01, 2013 11:54 am
Also when you record an element using the IDE version, on the target field there is typically a drop down. With that drop down, you can switch to the xpath.
Permissions in this forum:
You cannot reply to topics in this forum