Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的应用程序中,我的收件箱中有邮件,每封邮件都有不同的 ID。我无法点击第一封邮件,因为邮件 ID 每次都在不断变化。
xpath如下:
//*[@id='r1295']/td[4]/a/font
在上面的 xpath 中,'r...' 之后的数字不断变化。
如何处理这样的变化。
试试 xpath 函数:
//*[starts-with(@id, 'r')]/td[4]/a/font