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 drop-down
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 a target and blank field as a value, I still can't get rid of a feeling something is wrong.
Any clarification is much appreciated.