单击跨度元素时的奇怪现象

发布于 2024-08-07 04:44:52 字数 503 浏览 2 评论 0原文

我正在检查 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦醒时光 2024-08-14 04:44:52

好的,明白了:

sel.mouse_over(xpath)
sel.click(xpath)

ok got it:

sel.mouse_over(xpath)
sel.click(xpath)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文