测试以传递来自@@ ular / forms的Formcontrol import {FormControl}中的选定值;

时间:2019-05-10 10:01:22

标签: angular testing jasmine angular-material integration-testing

我正在Angular App中运行集成测试。我有Formcontrol元素,在选定的这个应该将其值传递给后端中的方法。我的问题是如何将选定的值传递给方法。我给出了代码片段

下拉/表单元素选择 header.id =用户,[值] =“ username1”,header.choices = [“ usename1”,“ username2”] //这是选定的值,这是必须传递的值

spec.ts

const choiceSelector=fixture.debugElement.query(By.css('.selectOption'));
******what should I write to pass the value from test*************

htmlcode

<mat-select [formControl]="header.selected" multiple class="selectOption" panelClass="something">
<mat-option *ngFor="let choice of header.choices" [value]="choice" class="selectOption">{{choice}}</mat-option>

0 个答案:

没有答案