使用python提取html类ID

时间:2018-05-31 15:40:20

标签: python html

这可能是愚蠢的,但我想知道python是否可以从html标签中提取类ID?我需要它的唯一原因是类ID每24小时不断变化,我需要稍后解析它。 在这种情况下,我需要FFVAD

<img alt="SOME TEXT" class="FFVAD" decoding="auto" style="" sizes="293px" srcset="https://somewebsite.com/8669459880035221504_n.jpg">

也许有一种方法可以使用beautifulsoup甚至是selenium?由于我的脚本使用selenium

1 个答案:

答案 0 :(得分:0)

在selenium中使用get_attribute()方法。

elem.get_attribute('class')    # FFVAD