java - Select column in a selected row using selenium web driver -
i have select row in table there multiple rows , in have click on column link . column link has same xpath in rows.
example:
row1 name1 updatelink row2 name2 updatelink row3 name3 updatelink
where name unique. after selecting particular row have click update link. update link has same xpath rows
try following:
//td[contains(.,'name1')]/following-sibling::td/a
Comments
Post a Comment