从样式表中获取颜色属性
我需要验证div的背景颜色的值。这是 HTML:
<div id="outercontainer" align="left">
有关背景颜色的信息在文件 style.css 中定义,如下所示:
#outercontainer {
background-color: #EAEAEA;
margin-left: auto;
margin-right: auto;
opacity: 1;
width: 1000px;
z-index: 2;
}
我尝试使用 selenium.getattribute 命令获取 bgcolor 的值,但 selenium 返回了以下错误消息:
错误:找不到元素属性:css=#oute 会话中的 rcontainer@background-color BC60eb07f15e4e63986634fb59bf58a1
结果为 。 我的代码的这一部分:
try
{
string atr_str = selenium.GetAttribute("css=#outercontainer@background-color");
Console.WriteLine(atr_str);
}
catch (SeleniumException)
{
Console.WriteLine("Color value was not got.");
}
事实上,我尝试了使用不同类型的定位器的不同方法,但没有任何帮助。 你能建议做什么?
I need to verify the value of background color of div. Here's the HTML:
<div id="outercontainer" align="left">
The information about background color is defined in file style.css like so:
#outercontainer {
background-color: #EAEAEA;
margin-left: auto;
margin-right: auto;
opacity: 1;
width: 1000px;
z-index: 2;
}
I tried to get the value of bgcolor using selenium.getattribute
command, but selenium returned me following error message :
ERROR: Could not find element attribute: css=#oute
rcontainer@background-color on session
bc60eb07f15e4e63986634fb59bf58a1
as the result.
This part of my code:
try
{
string atr_str = selenium.GetAttribute("css=#outercontainer@background-color");
Console.WriteLine(atr_str);
}
catch (SeleniumException)
{
Console.WriteLine("Color value was not got.");
}
In fact I tried different ways with different types of locators, but nothing helped me.
What can you advise to do?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我没有 C# 环境来测试它,但类似这样的东西应该可以工作:
现在
res
将包含背景颜色的rgba
值。您必须使用 Javascript,因为 Selenium 不适用于计算样式,仅适用于 HTML 标记本身中定义的样式。我稍微使用了换行符以保持可读性:
js
字符串可以全部放在一行中。I don't have a C# environment to test it in, but something like this should work:
Now
res
will contain thergba
value of the background color. You will have to use Javascript since Selenium doesn't work on the computed styles, only on the styles defined in the HTML tags themselves.I played with the linebreaks a bit to keep things readable: the
js
string can all be put on a single line.尝试使用:
Try with: