提前致谢!
下面是html,我使用driver.find_element_by_xpath("//h3[@class='title-part form_title']").value_of_css_property('color')
来捕捉颜色,但结果是rgba(63,64,64,1)
,但我期望的结果是#3f3f40 。
'#%02x%02x%02x' % (rgb)
来获取颜色代码?
救命!救命!救命啊!
答案 0 :(得分:0)
您想将rgba元组转换为十六进制值,它非常简单,这里有一些代码向您展示如何实现它:https://pythonjunkie.wordpress.com/2012/07/19/convert-hex-color-values-to-rgb-in-python/
def rgb_to_hex(rgb):
... return '%02x%02x%02x' % rgb