如何点击锚<a> tag from Canoo webtest?</a>

时间:2012-03-20 21:34:47

标签: xpath anchor web-testing canoo canoo-webtest

我们的团队使用以下锚标记替换了提交按钮:

<a class="l-btn" onclick="onFormSubmit(this.form)" Style="width: 80px; text-align:center;"> 
<span class="l-btn-left"> 
<span class="l-btn-text">Save</span> 
</span>
</a>

我从XPather中检索了xpath,并尝试使用canoo webtest点击它,但收到“失败:链接未找到”。

有谁知道如何模拟点击上面的内容?

感谢。

2 个答案:

答案 0 :(得分:0)

<clickLink xpath="//a[@class='l-btn']" description="Click first a tag with class l-btn" />

请参阅clickLink documentation

答案 1 :(得分:0)

clickLink xpath="//a[contains(@onclick,'onFormSubmit')]

description="click link with onclick property that contain the word
onFormSubmit"

将查找包含值xpath的{​​{1}}属性onclick的链接