I am writing an automated test to test a sign up page. Each of the textbox on this page is validated on blur event. Sign up button is only enabled if the validation for all textboxes has passed.
I have performed for each textbox the following
selenium.Type(textbox_id, content); //where content is programmatically generated in each round of test selenium.FireEvent(textbox_id, "blur");
All the sign up info gets filled up, but non it's blur event triggered. SignUp button remain disabled. Also, I have written an exact same test in java, which passed without the slightest bit of problem.
I would love to finish writing it in java, but I am restricted to the language I can use for this task; C#. Can someone tell me what might be causing this problem.