gpt4 book ai didi

angular - 'By' 类型的参数不可分配给 'Predicate' 类型的参数

转载 作者:行者123 更新时间:2023-12-03 09:45:02 25 4
gpt4 key购买 nike

我正在试验 Protractor (5.4.2) 并尝试测试我的 Angular 组件。
Unit testing in Angular course 的启发,我创建了以下测试。来自乔伊姆斯。

类(class)中的(工作)示例
enter image description here

我的(错误)代码

import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { DetailsComponent } from './details.component';
import { By } from 'protractor';

describe('DetailsComponent', () => {
let fixture: ComponentFixture<DetailsComponent>;

beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [DetailsComponent]
})
.compileComponents();
}));

beforeEach(() => {
fixture = TestBed.createComponent(DetailsComponent);

fixture.detectChanges();
});

it('contains 3 titles', () => {
expect(fixture.debugElement.queryAll(By.css('.card-title')).length).toBe(3);
});
});

但是,在测试方法中的.query调用中会出现以下类型错误:

Argument of type 'By' is not assignable to parameter of type 'Predicate'.



我不明白为什么会发生此错误,因为我的代码与示例相似。

最佳答案

发生此错误是因为您导入了 By来自 protractor而不是 @angular/platform-browser模块。

更改此 import { By } from 'protractor';import { By } from '@angular/platform-browser';

关于angular - 'By' 类型的参数不可分配给 'Predicate<DebugElement>' 类型的参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57058449/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com