I use fullcalendar in my project. When I click the mouse for some time of the day, the event handler is triggered in the calendar, as in this example.
$(document).ready(function() { $('#mainCalendar').fullCalendar({ defaultView: 'agendaDay', selectable: true, select: onCalendarSelect, }); }); function onCalendarSelect(start, end) { alert('hello from select event!'); } <link href="https://cdnjs.cloudflare.com/ajax/libs/fullcalendar/2.6.1/fullcalendar.css" rel="stylesheet"/> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.9.0/moment.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/fullcalendar/2.6.1/fullcalendar.js"></script> <div id = "mainCalendar">< /div> But I can understand how to simulate a click on a slot with time using Selenium IDE? Where to click?