单击跨度元素时的奇怪现象
我正在检查 FAYT 输入。我在文本框中输入内容,看到选项展开并单击其中之一。所有这些都顺利进行,但过程中有些事情失败了,因为未选择所选类别。 (当您手动尝试时,此功能就像一个魅力)
这是下拉建议的 html 的轮廓:
<div id="suggestions">
<span name="span1" onclick="selectByClick()" onMouseOver="changeColor()">text1<span/>
<span name="span2" onclick="selectByClick()" onMouseOver="changeColor()">text2<span/>
</div>
我正在做的是:
sel.click('//div[@id="suggestions"]//span[2]')
想法可能会导致此问题?
I have a FAYT input I'm checking. I type in the textbox, see the options unfold and click one of them. All this passes neatly but there is something in the process that fails because the selected category is not selected. (this feature works like a charm when you try it manually)
This is the outline of the drop down suggestions' html:
<div id="suggestions">
<span name="span1" onclick="selectByClick()" onMouseOver="changeColor()">text1<span/>
<span name="span2" onclick="selectByClick()" onMouseOver="changeColor()">text2<span/>
</div>
What I'm doing is:
sel.click('//div[@id="suggestions"]//span[2]')
Ideas what could be causing this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好的,明白了:
ok got it: