.png)
.
Test Cases for Time Picker -How to Test Time Picker?
Here !! Important Test cases for time picker given
- Verify whether the time picker is clickable or not.
- Check that the cursor point to hours when the user clicks in the time field
- Check that the time picker gets open or not when the user clicks on the time field
- Check whether the user is able to select the time from the time picker or not.
- Check whether the selected time showing in the time picker or not when the user selects the time.
- Check the time format for the field
- Check that when the user tries to select or enter the time in an invalid format
- Check the user able to enter the time manually or not.
- Check that when the user enters the invalid date manually.
- Check that When the user enters the hours more than 24.
- Check that when the user enters a minute more than 60.
- Check that AM/PM if the time format is 12 hours.
- Check that when the cursor moves automatically to the minute from hours when the user selects the valid hours.
- Check that user is able to cursor move from hours to minute through the arrow key
Hope !!! The above test cases for time picker are helpful for you...
Team,
QA acharya
Tags: time picker test cases, Test cases for time field, test scenarios for time picker, test case for time picker, time field cases
INPUT TYPE TIME:
HTML for the time picker
<input type="time">Allow User to select the time from the time picker
Example
<form>
<label for="appt">Select Time:</label>
<input type="time" id="appt" name="appt">
</form>
0 Comments