I\'m trying to select an item from a drop down menu using Capybara (2.1.0).
I want to select by number (meaning select the second, third, etc option).
I\'ve
Unfortunately, the most popular answer did not work for me entirely. I had to add .select_option to end of the statement
.select_option
select("option_name_here", from: "organizationSelect").select_option
without the select_option, no select was being performed
select_option