我有这段代码(在 Selenium IDE 中):
storeEval | window.document.defaultView.getComputedStyle(window.document.getElementsByTagName('input')[0]).getPropertyValue('background-color') | result
它返回我的颜色(rrr, ggg, bbb)
,我怎样才能得到这个颜色RRGGBB
?
我有这段代码(在 Selenium IDE 中):
storeEval | window.document.defaultView.getComputedStyle(window.document.getElementsByTagName('input')[0]).getPropertyValue('background-color') | result
它返回我的颜色(rrr, ggg, bbb)
,我怎样才能得到这个颜色RRGGBB
?
试试这个:
command: storeEval
target : color = window.document.defaultView.getComputedStyle(window.document.getElementsByTagName('input')[0]).getPropertyValue('background-color'); colorArr = color.replace(/[(rgb()\)]/g, '').split(','); hexString = parseInt(colorArr[0]).toString(16) + parseInt(colorArr[1]).toString(16) + parseInt(colorArr[2]).toString(16);
value : result
您可以将十进制值 (0 - 255) 转换为十六进制 (0 - FF)
var hexString = redNumber.toString(16) + greenNumber.toString(16) + blueNumber.toString(16);