I'm developing an MS Edge extension (using JavaScript), which periodically refreshes current window using the following call:
window.location.reload(1);
When, however, the page I'm currently on was opened as a result of a previous POST
request, the refresh request opens below popup:
I'm not sure how I can handle this popup and automatically simulate the Retry
click.
UPDATE
After struggling to find any info regarding this in different forums and documentation websites, I've decided to try to do the same in Google Chrome. It took me only 4 hours to accomplish what I was looking for thanks to the great documentation and community support. I'm posting this update with an intention to close the question as it's not needed for me any more.