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

Angular 2 tests - get DOM element styles(Angular 2 测试 - 获取 DOM 元素样式)
本文介绍了Angular 2 测试 - 获取 DOM 元素样式的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我想在我的 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.

这篇关于Angular 2 测试 - 获取 DOM 元素样式的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

How to make lt;divgt; resizeable?(如何制作lt;divgt;可调整大小?)
How do you mock Angular service that is a function?(您如何模拟作为函数的 Angular 服务?)
How do I test an externally served app using Testacular + AngularJS(如何使用 Testacular + AngularJS 测试外部服务的应用程序)
Jasmine angularjs - spying on a method that is called when controller is initialized(Jasmine angularjs - 监视初始化控制器时调用的方法)
Angular.js unitest a Directive with external template using html2js - Fail to load templates(Angular.js 使用 html2js 将指令与外部模板联合起来 - 无法加载模板)
How do I test a form submit in Jasmine?(如何在 Jasmine 中测试表单提交?)