角度5单位测试 - 获取错误'无法读取属性offsetHeight of null'

时间:2018-05-16 10:12:28

标签: angular5 karma-jasmine

当我在我的应用上进行单元测试时,它会显示以下错误

TypeError: Cannot read property 'offsetHeight' of null

在我的应用程序中,我使用下面的代码来获取div元素的高度

totalHeight= (document.getElementById("rcyc-page-header") as HTMLElement).offsetHeight +
                            (document.querySelector("nav.menu-wrapper.brand-nav-wrapper") as HTMLElement).offsetHeight;

当我打印变量' totalheight'的值时它显示正确,那么为什么它显示这个错误?

0 个答案:

没有答案