如何验证我的链接标题属性是否具有指定值?

时间:2013-02-26 16:00:01

标签: testing selenium automated-tests selenium-ide

我的页面上有一个链接,就像这样说

<a href="http://example.com" title="my title message">my link label</a>

如何验证我的链接标题属性是否具有“我的标题消息”值?

3 个答案:

答案 0 :(得分:4)

Assertattribute命令用于验证它,请检查此代码。

assertattribute  | title = my title message@href | http://example.com
assertattribute  | link=my link label@href       | http://example.com

答案 1 :(得分:1)

从Selenium IDE使用:

command         | target                   | value
-------------------------------------------------------------
assertAttribute | link=my link label@title | my title message

答案 2 :(得分:0)

尝试这样。

命令:verifyTitle

目标:我的标题信息

此命令会将实际页面标题与命令目标中给出的文本进行比较,如果两者相同则没有错误将显示其他明智的错误将显示

谢谢......