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

Popular posts from this blog

jquery - How can I dynamically add a browser tab? -

node.js - Getting the socket id,user id pair of a logged in user(s) -

keyboard - C++ GetAsyncKeyState alternative -