I want to select value from select list in RSpec. For example i have such data:
<div class="control-group">
 <label class="control-label" for="user_teacher_leader_attributes_teacher_id">Teacher names</label>
  <div class="controls">
   <select id="user_teacher_leader_attributes_teacher_id" name="user[teacher_leader_attributes][teacher_id]">
    <option value="1" selected="selected">Math teacher</option>
    <option value="2">Physics teacher</option>       
  </div>
</div>
I want to select option Physics teacher via RSpec. How can i do that? Also, can i choose something from the list by value (for example, select Physics teacher by value "2" which it has)? 
I found solution. You should use select method:
select "Physics teacher", :from => "teacher_leader[teacher_id]"
                        If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With