当我在我的应用上进行单元测试时,它会显示以下错误
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'的值时它显示正确,那么为什么它显示这个错误?