I want to test my Vaadin (v7.6.6) tables. But when I use Selenium IDE (2.9.1) in Firefox (47.0), a clickAt event on a table entry does not working (when you click on an entry, the color should change).
My command reads as follows:
ClickAt | //*[@id=…']/div[2]/div[1]/table/tbody/tr[1]/td[1]
So my target is the entry (1,1) of the table’s body. In FireBug the entry I want to click at reads as follows:
<td class="v-table-cell-content" style="width: 140px;">
<div class="v-table-cell-wrapper" style="text-align: left; width: 140px; background-color: transparent;">2005</div>
</td>
When I click on the Button “Find”, it shows me the correct table entry. Additionally a manual click event works fine.
Can anyone help me with my issue?