Python selenium通过背景渐变找到元素

时间:2015-09-27 21:43:50

标签: python css selenium xpath background

以前我找到这样的元素:

element = fox.find_element_by_xpath("//div[contains(@class, 'well')]/p[2]/a[@style='background:#0373F1;']")

效果很好!但现在元素有一个渐变:

"background:transparent linear-gradient(to bottom, #31A61A 0%, #217510 100%) repeat scroll 0% 0%"

我该如何做到这一点?

1 个答案:

答案 0 :(得分:0)

请尝试以下xpath。它应该工作

element = fox.find_element_by_xpath("//div[contains(@class, 'well')]/p[2]/a[contains(@style,'background:transparent linear-gradient')]")