I need to run
let pwa = window.open(url1);
which will download a file and only after that, I need to run
pwa = window.open(url2);
which will also download another file. How can I utilize pwa to do this? Or is there any other way I can achieve this?