css - REG : Custom Dropdown box identification [CAPYBARA] -


looking @ selecting value dropdown ( custom ) not regular dropdown , has lot of dropdown values

i able select first value code

find('.selected', :text=>arg1,exact: false).click

but unable select remaining values text has lot of padding spaces! how tackle situation

i'm not sure drop-down looks like, 1 thing might collect options:

dropdown = session.find(:css, '#elementid')                   #customize needed options  = dropdown.all(:css, "option").collect {|o| o.text} 

then use index select drop-down:

session.select options[3], from: 'elementid' 

Comments

Popular posts from this blog

javascript - Count length of each class -

What design pattern is this code in Javascript? -

hadoop - Restrict secondarynamenode to be installed and run on any other node in the cluster -