我正在使用 Material 组件开发 Angular 9。我想在 mat-select 组件中显示一些值。
下面是app.component.html
<h2> Angular - Material </h2>
<mat-form-field>
<mat-label>Type</mat-label>
<mat-select >
<mat-option value="string">Small text</mat-option>
<mat-option value="number">Number</mat-option>
<mat-option value="date">Date</mat-option>
</mat-select>
</mat-form-field>
<hr>
我的app.component.ts
import { Component } from '@angular/core';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss']
})
export class AppComponent {
title = 'angular-playground';
}
当我使用 ngserve 运行应用程序时,我可以看到包含所有选项的选择框。
但是当我尝试使用 karma ng test 测试此组件时,我在选择框中没有得到任何选项。我尝试检查 HTML DOM,但在 select 中没有看到任何选项标签,并且控制台中没有错误。
app.component.spec.ts
import { TestBed, async } from '@angular/core/testing';
import { RouterTestingModule } from '@angular/router/testing';
import { AppComponent } from './app.component';
import { MatFormFieldModule } from '@angular/material/form-field';
import {MatSelectModule} from '@angular/material/select';
describe('AppComponent', () => {
beforeEach(async(() => {
TestBed.configureTestingModule({
imports: [
RouterTestingModule, MatFormFieldModule, MatSelectModule
],
declarations: [
AppComponent
],
}).compileComponents();
}));
it('should create the app', () => {
const fixture = TestBed.createComponent(AppComponent);
const app = fixture.componentInstance;
expect(app).toBeTruthy();
});
});
这是一个非常基本的角度应用程序,我有一个只有选择框的简单组件。不知道为什么它在测试中没有显示选项。
下面是我的app.module.ts
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppRoutingModule } from './app-routing.module';
import { AppComponent } from './app.component';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { MatFormFieldModule } from '@angular/material/form-field';
import {MatSelectModule} from '@angular/material/select';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
AppRoutingModule,
BrowserAnimationsModule,
MatFormFieldModule,
MatSelectModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
请帮我解决这个问题。
您必须触发 MatSelectComponent 的切换才能显示选项列表,如下所示:
const matSelectComponent = fixture.debugElement.query(By.directive(MatSelect)).componentInstance;
fixture.detectChanges();
现在您可以通过以下方式访问您的选项:
const matOptionComponent = fixture.debugElement.queryAll(By.directive(MatOption));
根据我的经验,
By.css()
或By.directive()
方法不能用于访问MatOption
元素。相反,可以以稍微不同的方式访问这些选项:
const select = fixture.debugElement.queryAll(By.css('mat-select'))[0].componentInstance;
const options: MatOption[] = select.options;
...然后,如果需要对选项本身运行测试,您可以测试选项上的方法,例如:
options[i].focus(); // i = index, triggerEventHandler('focus')
options[i].select(); // triggerEventHandler('select')
options[i].deselect(); // triggerEventHandler('deselect')
options[i].getLabel(); // triggerEventHandler('getLabel')
options[i].toggle(); // triggerEventHandler('toggle')
options[i].disabled;
options[i].selected;
options.length;
所有这些方法都可以在位于
@angular/material/core
的源代码中找到。 (右键单击导入语句中的 MatOption)。