vote up 0 vote down star

Hi

In my action i have

render :update do |page|
    page["an_id"].value = "string"
end

My question is how can i test that the textfields value is changed propely?

Tried assert_select_rjs, but needs to be provided the replacing method just like :replace, :replace_html, :show, :hide, :toggle, :remove and :insert_html.
But i dont know how should i fit to this arguments.

flag
You're not clear at all. – Damien MATHIEU Oct 26 at 19:47
Ok, i have a method which has a render :update do |page| page["user_id"].value = 3 end And somehow i want to test this. Found a method called assert_select_rjs, but only works with incorporated actions like :replace_html etc... But in my case i'm not replacing any html tag, only just a textfields value, not the whole textfield. – dombesz Oct 27 at 15:31

1 Answer

vote up 1 vote down

I think most Rails developers now shun RJS and instead roll their own client side JS. Look into Prototype or jQuery and become really good with them. You'll write more robust applications if you do.

http://www.prototypejs.org/ http://jquery.com/

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.