I have already imported ViewChild,ElementRef,Renderer in ts file but it's showing error of "ERROR TypeError: Cannot read property 'nativeElement' of undefined"
import { Component, OnInit,ViewChild,ElementRef,Renderer } from '@angular/core';
@ViewChild('usernameField') input : ElementRef;
this.usernameField.nativeElement.focusIn();
expect focus on input element.