'Validate date in selenium IDE

How I can validate date using Selenium IDE? I have the following element:

<input type="text" aria-invalid="false" aria-required="false" class="date" disabled="" value="1992-05-17">

Thank you



Solution 1:[1]

If you want to validate the given date, you can use the below.

assertElementPresent | css=input:contains('1992-05-17')

Or please provide more detail if this does not answer your question.

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Akzy