如何在angular2中使用谓词

时间:2017-01-10 07:45:53

标签: angular testing typescript karma-jasmine

我使用angular2创建了一个登录页面。它有两个输入字段userNamepassword。登录中有一个按钮。 当我要为loginComponent编写测试用例时,必须使用predicate来识别button。这是我的测试用例。

import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { By } from '@angular/platform-browser';
import { DebugElement } from '@angular/core';
import { LoginComponent } from './login.component';


export class LoginComponentTest {
  constructor(public loginComponent: LoginComponent){
    this.loginComponent.logIn('Chathura', '1234');

  }
}

describe('LoginComponent', () => {
  beforeEach(() => {
    TestBed.configureTestingModule({
      declarations: [
        LoginComponent
      ],
    })
  });

  const fixture = TestBed.createComponent(LoginComponent);

  const button = fixture.query(predicate: Predicate<DebugElement>, scope?: Function) : DebugElement

});

我将通过提供输入值进行测试,然后点击登录按钮,看看接下来会发生什么。

我无法找到正确使用谓词的正确教程。

1 个答案:

答案 0 :(得分:3)

创建Predicate的最简单方法是使用By静态方法之一,即cssdirective

const button = fixture.debugElement.query(By.css('.the-button')).nativeElement;

By.css让你传递任何css选择器。 query的结果为DebugElement,因此如果您想与原生DOM元素进行交互,则需要获取nativeElement