I have following html and would like to read all td’s title attribute. I can be one sensor which can represent all titles or multiple sensors for first 5 td with title attribute. I have tried with select as tbody > tr > td[class^=‘event’] but it gives only first one. Index parameter is not possible to declare. Please help
<div class="datatable">
<table>
<tbody>
<tr>
<td></<td>
<td class="event" title="TTT"></td>
<td>ll</td>
</tr>
<tr>
<td></<td>
<td ></td>
<td class="event" title="bbb">ll</td>
</tr>
<tr>
<td class="event" title="bbb"></<td>
<td ></td>
<td class="event" title="bbb">ll</td>
</tr>
</tbody>
</table>
</div>