xpath, how to select more than one item using indices -
in query, select 3rd
//tablecontainer/table/tbody/tr/td[3]
how select both 3rd , 4th 's?
to both 3rd , 4th td
s, can use expression:
//tablecontainer/table/tbody/tr/td[position() >= 3 , position() <= 4]
Comments
Post a Comment