selenium ide - Why "clickAt" does not work on Vaadin tables? -
i want test vaadin (v7.6.6) tables. when use selenium ide (2.9.1) in firefox (47.0), clickat event on table entry not working (when click on entry, color should change).
my command reads follows:
clickat | //*[@id=…']/div[2]/div[1]/table/tbody/tr[1]/td[1]
so target entry (1,1) of table’s body. in firebug entry want click @ reads 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 click on button “find”, shows me correct table entry. additionally manual click event works fine.
can me issue?
something found useful when click event doesn't work use fire event command click in value , using target css=div.v-table-cell-wrapper
Comments
Post a Comment