デモサイトで練習テストを作成していますが、ドロップダウンリストから値を選択する際に問題がありますが、要素を見つけることができませんが、正しいですでSelectドロップダウン - Selenium Webdriver
drop_list = @@wait.until {
drop = @@driver.find_element :id => '#dropdown_7'
drop if drop.displayed?
drop.click
}
options=drop_list.find_element :id => '#dropdown_7'
options.each do |i|
if i.text == 'American Samoa'
i.click
break
end