I am using Selenium IDE 1.7.1 to check the box corresponding to account # 405357. Css seems to allow me to move forward when I select an item, but not backward. So choose $ 420:
css=td:contains('405357') + td
Any ideas on a workaround for selecting a checkbox? Ideally, the workaround would not include going back or forward, but just say select
css=input#paymentsForm_invoiceToPayIds if td:contains('405357')
I would prefer it to be in CSS, but XPath will be fine too.
Thanks!

<table> <tbody> <tr> <td> <input id="paymentsForm_invoiceToPayIds" type="checkbox" onclick="calculateInvoices(this)" value="405357" name="invoiceToPayIds"> <input id="__checkbox_paymentsForm_invoiceToPayIds" type="hidden" value="405357" name="__checkbox_invoiceToPayIds"> </td> <td>405357</td> </tr> </tbody> </table>
source share