使用onclick的图片的相对xpath是多少?

时间:2018-09-07 17:12:15

标签: xpath

我正在尝试查找图像的相对xpath(请参阅附件中的图像)。 目前,我正在使用以下绝对xpath,它可以正常工作,但时间太长:

xpath:=//DIV[@id='ResultSection']/DIV[1]/TABLE[1]/TBODY[1]/TR[2]/TD[2]/DIV[1]/DIV[1]/TABLE[1]/TBODY[1]/TR[15]/TD[10]/IMG[1]

enter image description here

1 个答案:

答案 0 :(得分:0)

您可以有多个相对Xpath:

//img[@title='Change']

//img[@class='its value']

//img[@onclick='its value']

多种组合://img[@title='Change' and @class='its value']