检查Selenium Ide中的背景颜色

时间:2014-04-08 16:30:12

标签: html5 selenium-ide

这是我的代码html:

<td class = "en" style = "background-color= #0000FF">

我现在想检查硒的颜色:

Command: verifyAttribute

Target : style

Value  : background-color= #0000FF

检查后我得到答案:error-style not found

我做错了什么?

1 个答案:

答案 0 :(得分:2)

你错过了外卡,试试:

command: verifyAttribute

Target : css=td#my_div@style

value  : *background-color= #0000FF*

将您的td更改为:

<td id="my_div" class = "en" style = "background-color= #0000FF">