I'm using Selenium RC and created all scripts in java (Using Junit test case)
I want to click one grid column having "Edit" link. My code is look like,
selenium.click("//table[@id='ctl00_POMSContentPlaceHolder_gvBillingCompany']//tr["+gRow+"]//td["+gCol+"]");
gRow
and gCol
are defined as integers and their values vary as moving to next row/column.
Please let me know if anything needs to be done in this.