With Firefox 47.0, I switched to the Marionette driver. Using Capybara, when I try to fill in a field, Capybara responds with 'Attempt to set readonly element with value' and doesn't set the field value. Querying the readonly flag gives a 'false', so what's wrong?
find_by_id('account_username').set(@username)
Attempt to set readonly element with value: test-1466414209-898496
*This will raise an exception in a future version of Capybara
find_by_id('account_username')['readonly']
=> "false"
Using Capybara 2.7.1 and geckodriver 0.8.0 on OSX.
Hope this is the right place to ask. Thanks in advance!