I have a problem with my Angular unit tests in Karma and TypeScript.
With the code
fixture.debugElement.query(By.css('.mat-select-trigger')).nativeElement.click();
I get an error [ts] Cannot find name 'By'.
What am I missing here? The only available import is import { by } from 'protractor'
but I believe it's not that.
For import the "By". You have need use platform-browser
, like this :
import {By} from "@angular/platform-browser";
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With