从范围获取文本返回空字符串

2024-08-21Python开发问题
13

本文介绍了从范围获取文本返回空字符串的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我正在尝试使用python和Selenium从此div内部的span中获取文本:

<div class="product-name">
    <span class="h1" itemprop="name">TEXT</span>
</div>

我尝试过此操作,但返回空字符串:

line = dr.find_element_by_class_name('product-name').find_element_by_xpath('.//span').text

提前感谢,

推荐答案

您应该尝试使用css_selector在一条Find语句中查找Desire元素,如下所示:-

line = dr.find_element_by_css_selector('div.product-name > span').text

如果您仍然收到空字符串,请尝试使用get_attribute("textContent")As:-

line = dr.find_element_by_css_selector('div.product-name > span').get_attribute("textContent")

或使用get_attribute("innerHTML")AS:-

line = dr.find_element_by_css_selector('div.product-name > span').get_attribute("innerHTML")

注意:-如果只有需要的文本,也可以使用class_name在父元素<div>上使用上述操作获取innerText:-

line = dr.find_element_by_class_name('product-name').text

line = dr.find_element_by_class_name('product-name').get_attribute("textContent")

这篇关于从范围获取文本返回空字符串的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

The End

相关推荐

在xarray中按单个维度的多个坐标分组
groupby multiple coords along a single dimension in xarray(在xarray中按单个维度的多个坐标分组)...
2024-08-22 Python开发问题
15

Pandas中的GROUP BY AND SUM不丢失列
Group by and Sum in Pandas without losing columns(Pandas中的GROUP BY AND SUM不丢失列)...
2024-08-22 Python开发问题
17

pandas 有从特定日期开始的按月分组的方式吗?
Is there a way of group by month in Pandas starting at specific day number?( pandas 有从特定日期开始的按月分组的方式吗?)...
2024-08-22 Python开发问题
10

GROUP BY+新列+基于条件的前一行抓取值
Group by + New Column + Grab value former row based on conditionals(GROUP BY+新列+基于条件的前一行抓取值)...
2024-08-22 Python开发问题
18

PANDA中的Groupby算法和插值算法
Groupby and interpolate in Pandas(PANDA中的Groupby算法和插值算法)...
2024-08-22 Python开发问题
11

PANAS-基于列对行进行分组,并将NaN替换为非空值
Pandas - Group Rows based on a column and replace NaN with non-null values(PANAS-基于列对行进行分组,并将NaN替换为非空值)...
2024-08-22 Python开发问题
10