在 Workfusion 中,我正在迭代 HTML 页面中由 xpath 找到的所有元素:
//*[starts-with(@id,"FormView1_hidRevElement")][${i}]
当 ${i} = 1 时,我得到预期的结果,但在 ${i} > 1 时没有。
在 HTML 页面中,我有如下元素:
id="FormView1_hidRevElement12636"
id="FormView1_hidRevElement12637"
id="FormView1_hidRevElement12642"
ETC,
抛出的错误:...
Caused by: org.openqa.selenium.NoSuchElementException: Unable to locate element: //*[starts-with(@id,"FormView1_hidRevElement")][2]
...
怎么了?