这是我的 javascript 代码(在 Selenium IDE 中,为清楚起见添加了换行符和缩进): storeEval |
var input = window.document.getElementsByTagName('input');
for(var i = 0; i<input.length; i++) {
if(window.document.defaultView.getComputedStyle(input[i]).getPropertyValue('background-color') == 'rgb(204, 230, 255)') {
testResult='passed';
} else {
testResult='failed';
}
}
| 测试结果
我需要检查所有输入的颜色。但是 Selenium Ide 只存储最后一个“INPUT”的测试结果。我确定在测试中间有错误。请帮忙。对不起,我的英语不好