how to change a number in xpath with any number in selenium ide -
i want text xpath , text appears in last row of table number of rows changing.
i want change number 6 here number. possible?
//*[@id='entire_ajax_table']/tbody/tr[6]/td/span/input
last()
gives access last element in sequence.
//*[@id='entire_ajax_table']/tbody/tr[last()]/td/span/input
Comments
Post a Comment