Verify textbox is empty or not after clicking on the Reset button

verify textbox is empty or not after clicking on the Reset button. Please help if anyone knows.

Thanks in Advance!!!

If the reset button is a genuine HTML form <input type="reset" ...> button, then these is a sense where you’re testing the browser and not the page. That said…

You want to use verifyElementAttributeValue

WebUI.verifyElementAttributeValue(findTestObject('path/to/object'), 'value', '', 20)

Thanks a lot Russ…it worked