以前我找到这样的元素:
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%"
我该如何做到这一点?
答案 0 :(得分:0)
请尝试以下xpath。它应该工作
element = fox.find_element_by_xpath("//div[contains(@class, 'well')]/p[2]/a[contains(@style,'background:transparent linear-gradient')]")