Host:
HTTPS:
You can also access this page from following domains
edgedbg.com
HTTPSHTTP
sub.edgedbg.com
HTTPSHTTP
lab.eastasia.cloudapp.azure.com
HTTPSHTTP
IE Security Zones test domains
Internet Explorer assigns all websites to one of four security zones: Internet, Local intranet, Trusted sites, or Restricted sites. The zone to which a website is assigned specifies different security settings that may lead to different behaviors. Following domains allow you to test the browser labs in different security zones in IE. Before navigating to following domains, you need to either map these domains into the correct security zone manually or run following command to map these domains automatically.
powershell -nop -c "iex(New-Object Net.WebClient).DownloadString('http://edgedbg.com/files/iemap.ps1')" CopiedCopy failed, please copy the command manually
internet.edgedbg.com
HTTPSHTTP
sub.internet.edgedbg.com
HTTPSHTTP
trusted.edgedbg.com
HTTPSHTTP
sub.trusted.edgedbg.com
HTTPSHTTP
intranet.edgedbg.com
HTTPSHTTP
sub.intranet.edgedbg.com
HTTPSHTTP
Fork me on GitHub

Edge WebView2 Network Export log capture

Main steps

  1. Close the host process that invokes Edge WebView2.

  2. Search for environment in Windows and open Edit the system environment variables and click the Environment Variables... button to open the editing page.

  3. Create a new user/system variable as follows:

    Variable name: WEBVIEW2_ADDITIONAL_BROWSER_ARGUMENTS

    Variable value: --log-net-log=%USERPROFILE%\Desktop\net-export.json --net-log-capture-mode=Everything

    You can choose a different path instead of %USERPROFILE%\Desktop\net-export.json.

    If you want the variable to be effective system-wide, create it as a system variable. Otherwise, create it as a user variable

  4. Now launch the host process that invokes Edge WebView2, it will captuer Network Export log during its lifetime.

End steps

  1. The Edge WebView2 Network Export log can be found on your desktop with the name net-export.json. If you changed the path, locate the file at your desired location.

  2. Delete the user/system variable: WEBVIEW2_ADDITIONAL_BROWSER_ARGUMENTS that you created.