当具体发生时,如何更改html表条目背景的背景颜色?

时间:2014-06-23 16:31:29

标签: javascript html css selenium webdriver

我正在制作一个html表,我需要某些盒子的背景来改变selenium webdriver运行后的颜色。例如,如果webdriver在没有错误的情况下运行该站点,则会更改该应用程序绿色表中的框,或者如果有错误,则将框颜色更改为红色。我知道我需要java脚本,但我以前从未使用过它。

1 个答案:

答案 0 :(得分:0)

您可以使用JavaScript属性document.body.style.background

以下是一个例子:

function changeBackground(color) {
    document.body.style.background = color;
}

点击此处查看更多信息:How do I change the background color with JavaScript?

要在用户按Enter键时更改框的背景颜色,请点击:Changing background color of text box input not working when empty

的确,你需要适应自己的元素。