1
0
Fork 0
mirror of https://github.com/teampoltergeist/poltergeist.git synced 2022-11-09 12:05:00 -05:00

ok_json can't encode symbols; convert to string

This commit is contained in:
Jon Leighton 2012-03-11 11:39:53 +00:00
parent d5c9b1a251
commit f91a0a15fe

View file

@ -45,7 +45,7 @@ module Capybara::Poltergeist
end
def attribute(page_id, id, name)
command 'attribute', page_id, id, name
command 'attribute', page_id, id, name.to_s
end
def value(page_id, id)