I am having a weird problem with Capybara and Selenium (Firefox) selecting items in a dropdown.
We are editing a Widget that has a dropdown for _size _on the page with values 1-10. We can use a simple form, like this.
The test code is pretty straightforward too.
If you watch this test execute in the browser, the dropdown box that lets the user select the size is clicked on, the value “5” is located and the dropdown closes. Well, not quite. The value changes according to Capybara (fetching the value after page.select confirms this), but the dropdown seems to continue displaying. Weird.
If you post this form, the value that you get in the controller is still “3”, so something is really broken. As a workaround a JQuery selection works.
Let’s file a bug in Capybara to start, https://github.com/jnicklas/capybara/issues/448.
Ideas?