Selenium ide:如何点击链接

时间:2014-09-09 03:37:55

标签: css selenium-ide

我需要你的帮助才能用selenium ide做一个动作。  我想点击第二个链接

<a class="more_button" href="http://example.com/view/9680-action1.html">Do action </a>

<a class="more_button" href="http://example.com/view/9680-action2.html">Do action </a>

<a class="more_button" href="http://example.com/view/9680-action3.html">Do action </a>

我想使用此文本作为匹配文本打开操作2: action2.html

我尝试过使用css a.more_button:contains("action2.html") 但我不知道如何编辑它。

1 个答案:

答案 0 :(得分:0)

使用xpath,单击第二个链接:

click | //a[@href='http://example.com/view/9680-action2.html']