Selenium xpath all (//*) 不会占用所有 css 元素

Posted

技术标签:

【中文标题】Selenium xpath all (//*) 不会占用所有 css 元素【英文标题】:Selenium xpath all (//*) doesn't take every css elements 【发布时间】:2019-03-12 07:12:38 【问题描述】:

我正在尝试使用 selenium (XPath) 列出不同网站上的每种颜色,但我不知道为什么我的脚本没有得到所有颜色。

background_ele = browser.find_elements_by_xpath("//*[contains(@style,'background')]")
colors_ele = browser.find_elements_by_xpath("//*[contains(@style,'color')]")
background_colors = [x.value_of_css_property('background-color') for x in background_ele]
colors = [x.value_of_css_property('background-color') for x in colors_ele]

此代码应该获取具有背景或颜色属性的每个元素,但是当我为此网站运行它时:“www.example.com”我看不到下面出现在页脚和页眉上的颜色:

background-color: rgb(54, 64, 66) !important;

我只打印那些:

['rgba(255, 255, 255, 0)', 'rgba(0, 0, 0, 0)', 'rgba(169, 68, 66, 1)', 'rgba(0, 0, 0, 0)']

我的代码是否存在问题,或者可能是使用 selenium 的更有效方法?

更新

我的脚本实际上只接受 html 中的标签,而不是 css 文件中的标签。

<div class="example"style="src="https://example.com/img/slider.jpg"></div>

如何使用 selenium 定位每个包含参数“背景”或“颜色”的 css 属性(来自 css 文件)?

【问题讨论】:

看起来有些styles 是在单独的样式文本/css 块中定义的。尝试获取这些并寻找backgroundColors。 @wp78de 我怎样才能找到那些有硒的?它不应该自动捕获它们吗? @jjyoh 你想得到所有有效计算的颜色吗? 【参考方案1】:

Selenium 不会处理 DOM 结构中缺少的 CSS 属性。或者,您可以通过为每个需要的节点应用一个类来使用jQuery.filter(),从而允许以标准方式查找元素: 我下面的例子是//div[contains(@class, 'found')]

$(document).ready(function() 
	$("*").filter(function() 
		return $(this).css("background-color") == "rgb(54, 64, 66)";
	).text("true").addClass("found"); 
);
.white 
background-color: rgb(255, 255, 255);

.black 
background-color: rgba(0, 0, 0, 0);

.carmine 
background-color: rgba(169, 68, 66, 1);

.cosmos 
background-color: rgb(54, 64, 66);

.found 
color: green !important;
font-weight: bold;
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<div class="white">false</div>
<div class="black">false</div>
<div class="carmine">false</div>
<div class="cosmos">false</div>

【讨论】:

以上是关于Selenium xpath all (//*) 不会占用所有 css 元素的主要内容,如果未能解决你的问题,请参考以下文章

Selenium xpath 对 python 的行为与对 ruby​​ 的行为不同 [重复]

selenium + Python -- xpath定位

selenium +xpath

Selenium-xpath详解

Selenium-xpath详解

python+selenium元素定位之XPath学习01