gpt4 book ai didi

python - Selenium + Python : check attribute value

转载 作者:太空宇宙 更新时间:2023-11-04 00:06:58 26 4
gpt4 key购买 nike

我想检查元素中存在的属性值。

我有以下 Python 代码:

validkey = False

# Was the key valid.
element = w.find_element_by_id('registerkey_form')

# Is the activation message is shown, meaning it was successful in activation.

if element.get_attribute('style'):

validkey = True

问题是倒数第二行。我要检查:

style="display:block;"

不仅仅是风格本身的存在,还有值(value)。

原来是:

style="display:none;"

我想检查它是否是“ block ”。

最佳答案

如果你想检查 style 属性的值,试试

if element.get_attribute('style') == 'display: block;':
validkey = True

或者更好的做法如下:

if element.value_of_css_property('display') == 'block':
validkey = True

关于python - Selenium + Python : check attribute value,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53792432/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com