I have this inputs generated dynamically:
You can access the DOM by the elementRef.
DOM
elementRef
Inject it through your constructor by
constructor(myElement: ElementRef) { ... }
And access the DOM element by the nativeElement property
nativeElement
myElement.nativeElement.select("#blabla")