I am quite new to python selenium and I am trying to click on a button which has the following html structure:
<a href="#" onclick="loadCalendarsForDateFn('jmpto1605')"><span class="jumpToMonthMM">May</span><span class="jumpToMonthYY">2016</span></a><br/>
I would like to be able to click the "May 2016" button above. Can someone guide me how to do that?
Thanks in advance!