Angular 2 测试 - 获取 DOM 元素样式

2022-01-11 00:00:00 unit-testing jasmine dom css angular

我想在我的 Angular 2 应用程序中测试我的隐藏显示按钮的功能(测试是用 Jasmine 编写的),所以我需要检查相关元素的 display 属性的值.如何使用 Angular 的 debugElement 获取此属性?测试代码:

I want to test the functionality of my hide-show button in my Angular 2 app(Tests are written in Jasmine), so I need to check the value of the display property of the relevant element. How can I get this property using Angular's debugElement? Test code:

let input = fixture.debugElement.query(By.css('input'));
expect(input.styles['visibility']).toBe('false');

我得到错误:预期 undefined 为假".

I get the error: Expected undefined to be 'false'.

推荐答案

对于任何偶然发现这个例子的人来说,display 这个特定问题的解决方案是 hidden 属性在 debugElement 上.如果元素被隐藏,它将包含 true,否则将包含 false.

For anyone stumbling upon this example, the solution for this specific issue with display is the hidden property on the debugElement. It will contain true if the element is hidden and false otherwise.

相关文章