gpt4 book ai didi

javascript - 获取 SVG 元素的最后一个子元素高度

转载 作者:行者123 更新时间:2023-11-30 05:32:06 35 4
gpt4 key购买 nike

出于测试目的,我正在尝试获取最后一个 child 的高度。

我可以使用 $('.nv-series-1 rect:last-child') 选择元素,但不确定如何具体获取高度。

我尝试了 $('.nv-series-1 rect:last-child').getBBox() 但没有成功。

<g class=nv-series-1>
<rect class="nv-bar positive" x="0" y="206.8" height="13.15" width="86.4"></rect>
<rect class="nv-bar positive" x="0" y="206.8" height="13.15" width="86.4"></rect>
</g>

最佳答案

找到元素 by.css 并使用 getAttribute()获取 height 属性值:

var rect = element(by.css('.nv-series-1 rect:last-child'));
expect(rect.getAttribute('height')).toBe('13.15');

关于javascript - 获取 SVG 元素的最后一个子元素高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26289224/

35 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com