blob: 1a5480f7d6c9c25de4f319bdde5f21e66613b4bc (
plain)
1
2
3
4
5
6
7
8
9
10
|
from lxml import etree
document = etree.parse("regression-2602_output.svg")
parent = document.find('{http://www.w3.org/2000/svg}g[@id="parent"]')
paths = parent.findall('{http://www.w3.org/2000/svg}path')
assert parent.attrib.get("style") == "fill:#0000ff"
assert paths[0].attrib.get("style") == "fill:#ff0000"
assert paths[1].attrib.get("style") is None
|