On Mon, Mar 18, 2013 at 2:28 PM, <[email protected]> wrote: > I was able to select 'Year' as 2011 but not 'Make' drop down.In that I'm > trying to select 'BMW'.
This worked for me: require "watir-webdriver" browser = Watir::Browser.new browser.goto "http://dev01-new.firestonecompleteautocare.com/" browser.select(:id => "universal-year").select "2011" Watir::Wait.until { browser.select(:id => "universal-make").include? "BMW" } browser.select(:id => "universal-make").select "BMW" Željko -- https://leanpub.com/watirbook -- -- Before posting, please read http://watir.com/support. In short: search before you ask, be nice. [email protected] http://groups.google.com/group/watir-general [email protected] --- You received this message because you are subscribed to the Google Groups "Watir General" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
