Skip to content

Instantly share code, notes, and snippets.

@dev-jonghoonpark
Last active August 3, 2020 15:15
Show Gist options
  • Save dev-jonghoonpark/4560cf08d855b8621678bb8e6f1c7e8f to your computer and use it in GitHub Desktop.
Save dev-jonghoonpark/4560cf08d855b8621678bb8e6f1c7e8f to your computer and use it in GitHub Desktop.
add replay delay in fiddler script

https://stackoverflow.com/a/34445606

FiddlerScript uses JScript.NET, which can reference .NET assemblies, and System.Threading contains Sleep.

1. In Tools > Fiddler Options > Extensions, add the path to System.Threading.dll. On my machine, this was located at C:\Windows\Microsoft.NET\Framework\v4.0.30319.
2. In FiddlerScript, add import System.Threading;.
3. You can now add lines like Thread.Sleep(1000).

  • Step 1 is not required on latest version of Fiddler
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment