如何编写相对路径表达式(XPath)以从以下屏幕截图中提取电子邮件地址?

How to write the relative path expression (XPath) to extract the email address from the following screenshot?

enter image description here

我看到绝对路径一直在变化。

1) //div[@id='details']/div[2]/div[2]/div1/div[2]/dl[8]/dd1

2) //div[@id='details']/div[2]/div[2]/div1/div[2]/dl[7]/dd1

需要你帮忙写出相对表达式来代替绝对表达式。

这是为了与 Automation Anywhere 一起使用来自动化网站。 网站:https://www.fakenamegenerator.com/gen-male-sp-nz.php

提前致谢

试试这个:

//dl[dt/text()='Email Address']/dd

意思是:

  1. 找到一个 dl 元素,该元素的直接子 dt 元素带有文本 'Email Address'
  2. dl元素
  3. 下找到一个直接子元素dd

然后您可以在对象克隆中使用它。