I'm trying to open a new window using following code:
this.layoutService.url(order,this.testMethod()).subscribe( response => { window.open(encodeURI(response), '_blank');} );
This site is attempting to open pop-up window
Even I have set the block pop-up option to false still it is populating confirmation popup
I had the same issue, but found out that if you are using it inside an async function it gets blocked, if you're using it the same try to put it outside of async function