I'm developing .NET Windows From application in C#. As per my requirement, I need to open a URL in the browser's Pop up (not the browser main window) same as it is opened using javascript's "window.open" method. This was a little tricky but I managed by using the below CMD command.
C:\Window\system32>start msedge --app="https://www.google.com/"
I parsed the above command into C# code to trigger a similar result. Process.Start("msedge", "--app=\"https://www.google.com\"");
The code works fine for Chrome only. But when it runs for Edge or Firefox it opens the browser (main browser window) with an empty address bar. Whereas I'm expecting this should open the URL in the mentioned browser popup window.