I'm trying to click a button 'Copy Address' then dropdown item 'Shipping to Billing' option. I'm able to click button by id but my next line of script throws an error, here is what I have -

click_element(@driver, :id, 'copyAddress')
@driver.find_element(:class, 'dropDownMenu')

#select(@driver, :class, 'dropDownMenu', 'Billing to Shipping')
#@driver.find_element(:class, 'dropDownItemOver')
#select(@driver, :class, 'dropDownItem', 'Billing to Shipping')

I've tried all this so far and no luck....After clicking the button I'm trying to get into the dropdownMenu with find_element and then clicking the option 'Billing to Shipping'

any help....thanks

link|improve this question
if this works for u, please mark my answer as the collect solution – seleniumnewbie Jan 29 at 2:04
I tried your answer and it didn't work but I'm sure after I clarify my question you probably have a different way off answering it...appreciate the time. – user1174303 Jan 30 at 23:40
feedback

1 Answer

this should do it for you...

@driver.find_element(:id, "copyAddress").find_element(:css,"option[value='1']").click

where value number is the value of the option corresponding to "Billing to Shipping"

link|improve this answer
Here is what the html looks like after clicking id "copyAddress" ------ <div id"copy" class="dropDownMenu" style="display:none;"> ----- <table cellspacing="0" cellpadding="4"border="0"> --- <body> -- <tr class="dropDownItem" onmouseout="this.className='dropDownItem'" onmouseover="this.className='dropDownItemOver'" onclick="copyMapLocation( 'Billing to Shipping' )"> --------- <td nowrap="">Billing to Shipping</td> – user1174303 Jan 30 at 23:35
So after clicking copyAddress and when you hover over "Billing to Shipping" the class "dropDownItem" is actually "dropDownItemOver" and then you click the option but not sure how to click something with td nowrap .....? Sorry if my question was a bit off. – user1174303 Jan 30 at 23:38
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.