My current challenge involves testing numerous Angular Material mat-select drop-downs. While I have successfully set the value for regular select drop-downs using
productsSelectEl.nativeElement.value = 1;
I am curious if there is a way to achieve this without relying on NgModel. Managing additional variables for each select drop-down can become cumbersome, especially when dealing with multiple instances.