从样式表中获取颜色属性

发布于 2024-12-15 11:21:58 字数 906 浏览 1 评论 0原文

我需要验证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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

回心转意 2024-12-22 11:21:58

我没有 C# 环境来测试它,但类似这样的东西应该可以工作:

string js = "
    window.document.defaultView.getComputedStyle(
        window.document.getElementById('outercontainer'), null).
            getPropertyValue('background-color');
            ";
string res = selenium.GetEval(js);

现在 res 将包含背景颜色的 rgba 值。您必须使用 Javascript,因为 Selenium 不适用于计算样式,仅适用于 HTML 标记本身中定义的样式。

我稍微使用了换行符以保持可读性:js 字符串可以全部放在一行中。

I don't have a C# environment to test it in, but something like this should work:

string js = "
    window.document.defaultView.getComputedStyle(
        window.document.getElementById('outercontainer'), null).
            getPropertyValue('background-color');
            ";
string res = selenium.GetEval(js);

Now res will contain the rgba 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.

一念一轮回 2024-12-22 11:21:58

尝试使用:

string rgbaColor = yourElement.GetCssValue("background-color");

Try with:

string rgbaColor = yourElement.GetCssValue("background-color");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文