我正在使用Katalon IDE生成脚本。
由于我的应用程序在右上角有一个退出按钮,因此当我单击它时,IDE将生成
xpath=(.//*[normalize-space(text()) and normalize-space(.)='S'])[3]/following::span[3]
在Eclipse中运行时,此行将显示错误。在检查此元素时,我发现了这一点:
<td id="titlebar_hyperlink_8-co_0" role="presentation"
nowrap="nowrap" align="left" class=" verticalSpacer"
style="vertical-align:top;">
<span id="titlebar_hyperlink_8-lbsignout" align="left"
ctype="label" tabindex="0" targetid=
"titlebar_hyperlink_8-lbsignout" mxevent="click" accesskey="S"
class="text powerwhite anchor" style="display:block;cursor:pointer;"
title="Sign Out ALT+S" hotkey="83"><img id="titlebar_hyperlink_8-
lbsignout_image" src="btn_signout.gif" class="pwimg" border="0"
style="vertical-align:top;margin:0px;margin-left:3px;margin-right:3px;"
alt="Sign Out ALT+S"><span><span></span><span class="text hl
hlak">S</span><span>ign Out</span></span></span></td>
我是硒及其所有相关材料的新手。我将不胜感激。谢谢,Stack Overflow社区。 p>
答案 0 :(得分:0)
尝试将xpath更改为
'.//*[@title="Sign Out ALT+S"]'
说明:
您要唯一地定位元素。通常,您可以尝试使用id
,但是您的元素ID似乎是动态的,因此它不一定在每种情况下都有效。
*
-表示任何元素,在括号[ ]
中放置了您要用来查找元素的属性。我选择标题是因为它在给定页面上可能是唯一的。
我建议使用this cheatsheet作为xpath参考。