使用 Firefox 47.0,我切换到 Marionette 驱动程序。使用 Capybara,当我尝试填写字段时,Capybara 以“尝试设置带有值的只读元素”响应,并且不设置字段值。查询只读标志会给出“假”,那么有什么问题?
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"
在 OSX 上使用 Capybara 2.7.1 和 geckodriver 0.8.0。
希望这是问的正确地方。提前致谢!