Angular2 测试:ComponentFixture 中的 DebugElement 和 Nati

Angular2 testing: What#39;s the difference between a DebugElement and a NativeElement object in a ComponentFixture?(Angular2 测试:ComponentFixture 中的 DebugElement 和 NativeElement 对象有什么区别?)
本文介绍了Angular2 测试:ComponentFixture 中的 DebugElement 和 NativeElement 对象有什么区别?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我目前正在整理一些在组件级别测试 Angular 2 应用程序的最佳实践.

I'm currently putting together some best practices for testing Angular 2 apps on a component level.

我看过一些教程查询夹具的 NativeElement 对象以获取选择器等,例如

I've seen a few tutorials query a fixture's NativeElement object for selectors and the like, e.g.

it('should render "Hello World!" after click', async(() => {
    builder.createAsync(HelloWorld).then((fixture: ComponentFixture<HelloWorld>) => {
        fixture.detectChanges();
        let el = fixture.nativeElement;
        el.querySelector('h1').click();
        fixture.detectChanges();
            
        expect(el.querySelector('h1')).toHaveText('Hello World!');
    });
}));

但是,在 juliemr 的 Angular 2测试种子 她通过父 DebugElement 对象访问 NativeElement.

However, in juliemr's Angular 2 test seed she accesses the NativeElement through a parent DebugElement object.

it('should render "Hello World!" after click', async(() => {
    builder.createAsync(HelloWorld).then((fixture: ComponentFixture<HelloWorld>) => {
      fixture.detectChanges();
      let compiled = fixture.debugElement.nativeElement;
      compiled.querySelector('h1').click();
      fixture.detectChanges();
            
      expect(compiled.querySelector('h1')).toHaveText('Hello World!');
    });
}));

是否有任何特定情况下您会使用夹具的 debugElement.nativeElement 而不是其 nativeElement?

Are there any specific cases you'd use a fixture's debugElement.nativeElement over its nativeElement?

推荐答案

  • nativeElement 返回对 DOM 元素的引用
  • DebugElement 是一个 Angular2 类,它包含与调查元素或组件相关的各种引用和方法(参见 DebugNode和DebugElement的源码
    • nativeElement returns a reference to the DOM element
    • DebugElement is an Angular2 class that contains all kinds of references and methods relevant to investigate an element or component (See the source of DebugNode and DebugElement
    • 这篇关于Angular2 测试:ComponentFixture 中的 DebugElement 和 NativeElement 对象有什么区别?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Update another component when Formik form changes(当Formik表单更改时更新另一个组件)
Formik validation isSubmitting / isValidating not getting set to true(Formik验证正在提交/isValiating未设置为True)
React Validation Max Range Using Formik(使用Formik的Reaction验证最大范围)
Validation using Yup to check string or number length(使用YUP检查字符串或数字长度的验证)
Updating initialValues prop on Formik Form does not update input value(更新Formik表单上的初始值属性不会更新输入值)
password validation with yup and formik(使用YUP和Formick进行密码验证)