下一格式的页面上有多个图形栏:
<g transform="translate(4.139419078826904,136.6666717529297)" class="nv-bar positive" style="fill: rgb(228, 243, 217); stroke: rgb(228, 243, 217);">
<rect height="68.33333333333331" width="23.12365145228216" class="discreteBar"></rect>
</g>
我试图用xpath获取一个height属性,但是出了点问题。
我试过了:
//g[contains(@class,'nv-bar') and contains(@class,'positive')]/rect/@height
和
//rect[@class='discreteBar']/@height
以及上述组合但仍然无法得到它...请帮忙!