Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试在 mac 上使用 watij 模拟锚标记的单击事件。我找到了标签
<a name="myLink" href="" onClick=""></a>
我的代码是
Tag link = spec.jquery("a[name=myLink]").click();
但这似乎不起作用。请帮忙。
谢谢和问候, Ankur Agrawal
您可以尝试更改对链接的引用。例如,通过idor引用它class,如下所示:
id
class
<a href="" class="my_link">Hello</a>
-
Tag link = spec.jquery("a.my_link").click();
此外,虽然我不熟悉 Watij,但在代码的这一点上,您确定<a>元素已完成加载吗?在模拟针对它们的操作之前,您需要验证 DOM 中的所有元素是否已加载。
<a>