I have this scenario: simple html form that is being processed with Ajax with clear (reset that form) button. I want to test clear function, hence the question: What is the right way to check that no values are selected from dropdown list with Selenium IDE?
I've tried assertSelectedValue command, but didn't find a way to specify the unselected value. So i switched to assertValue command which works smooth with input fields and checkboxes. But is it right to use it for dropdown lists? Even though test passes with specified dropdown list id as target and blank field as a value, i still can't get rid of a feeling something is wrong.
Any clarification is much appreciated.