├── .gitignore ├── Binaries .NET 3.5 ├── Abstracta.FiddlerSessionComparer_3.5.dll ├── Abstracta.GXtest.Utils.dll ├── Abstracta.Generator_3.5.dll ├── Abstracta.ScriptGeneratorGUI_3.5.exe ├── FiddlerCore.dll ├── Ionic.Zip.dll ├── Newtonsoft.Json.dll └── Simplicit.Net.Lzo.dll ├── Binaries .NET 4.5 ├── Abstracta.FiddlerSessionComparer_4.5.dll ├── Abstracta.GXtest.Utils.dll ├── Abstracta.Generator_4.5.dll ├── Abstracta.ScriptGeneratorCLI_4.5.exe ├── Abstracta.ScriptGeneratorGUI_4.5.exe ├── FiddlerCore.dll ├── Ionic.Zip.dll ├── ManyConsole.dll ├── NDesk.Options.dll ├── Newtonsoft.Json.dll └── Simplicit.Net.Lzo.dll ├── Examples └── duckduckgo │ ├── AutoGeneratedScriptName.jmx │ ├── ProcessingResult.txt │ └── sessions.saz ├── FiddlerSessionComparerCLI_3.5 ├── FiddlerSessionComparerCLI_3.5.csproj ├── Properties │ └── AssemblyInfo.cs └── app.config ├── FiddlerSessionComparerCLI_4.5 ├── FiddlerSessionComparerCLI_4.5.csproj ├── Program.cs ├── Properties │ └── AssemblyInfo.cs └── app.config ├── FiddlerSessionComparerGUI_4.5 ├── App.config ├── App.xaml ├── App.xaml.cs ├── FiddlerSessionComparerGUI_4.5.csproj ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings └── Readme.txt ├── FiddlerSessionComparerTests_4.5 ├── FiddlerSessionComparerTests_4.5.csproj ├── JSONParse.cs ├── Properties │ └── AssemblyInfo.cs └── XMLParse.cs ├── FiddlerSessionComparer_3.5 ├── Content │ └── Tuple.cs ├── FiddlerSessionComparer_3.5.csproj ├── Properties │ └── AssemblyInfo.cs ├── Utils │ └── EmptyFile.txt └── app.config ├── FiddlerSessionComparer_4.5 ├── ComparerResultType.cs ├── Content │ ├── ContentFactory.cs │ └── XmlContentType.cs ├── EqualsResult.cs ├── FiddlerSessionComparer.cs ├── FiddlerSessionComparer_4.5.csproj ├── Page.cs ├── Parameter.cs ├── ParameterDefinition.cs ├── Properties │ └── AssemblyInfo.cs ├── RegExpExtractor.cs ├── Replacement.cs ├── Utils │ ├── FiddlerSessionExtension.cs │ ├── Logger.cs │ ├── NameFactory.cs │ ├── SAZ-DOTNETZIP.cs │ ├── SessionUtils.cs │ └── StringUtils.cs └── app.config ├── GeneratorFramework_3.5 ├── AbstractGenerator │ ├── Extensions │ │ └── EmptyFile.txt │ ├── ParameterExtractor │ │ └── EmptyFile.txt │ ├── Validations │ │ └── EmptyFile.txt │ ├── Wrapper │ │ └── EmptyFile.txt │ └── Wrappers │ │ └── EmptyFile.txt ├── Constants │ └── EmptyFile.txt ├── GeneratorFramework_3.5.csproj ├── JMeterGenerator │ ├── AuxiliarClasses │ │ └── EmptyFile.txt │ ├── ParameterExtractor │ │ └── EmptyFile.txt │ └── Validations │ │ └── EmptyFile.txt ├── OSTAGenerator │ ├── AuxiliarClasses │ │ ├── SCLSnippets │ │ │ └── EmptyFile.txt │ │ └── Scripts │ │ │ └── EmptyFile.txt │ ├── ParameterExtractor │ │ └── EmptyFile.txt │ └── Validations │ │ └── EmptyFile.txt ├── Properties │ └── AssemblyInfo.cs └── TestingGenerator │ └── ParameterExtractor │ └── EmptyFile.txt ├── GeneratorFramework_4.5 ├── AbstractGenerator │ ├── AbstractFollowRedirect.cs │ ├── AbstractGenerator.cs │ ├── AbstractPageRequest.cs │ ├── AbstractStep.cs │ ├── Command.cs │ ├── DataPool.cs │ ├── HTTPRequest.cs │ ├── ParameterExtractor │ │ ├── AbstractParameterExtractor.cs │ │ ├── AbstractRegExParameter.cs │ │ └── NameGenerator.cs │ ├── ParametersType.cs │ ├── Validations │ │ ├── AbstractValidation.cs │ │ ├── AppearTextValidation.cs │ │ ├── CheckMainObjectValidation.cs │ │ ├── DefaultValidation.cs │ │ └── ResponseCodeValidation.cs │ └── Wrappers │ │ ├── FiddlerSessionsWrapper.cs │ │ └── GXTestScriptWrapper.cs ├── Constants │ └── HTTPConstants.cs ├── GeneratorFramework_4.5.csproj ├── JMeterGenerator │ ├── AuxiliarClasses │ │ ├── CommonArgumentTypes.cs │ │ ├── CommonCollectorTypes.cs │ │ ├── JMeterWrapper.cs │ │ └── ThinktimeType.cs │ ├── JMeterGenerator.cs │ ├── PageRequest.cs │ ├── ParameterExtractor │ │ ├── JMeterConstant.cs │ │ └── JMeterRegExParameter.cs │ ├── Step.cs │ └── Validations │ │ ├── AppearTextValidation.cs │ │ ├── CheckMainObjectValidation.cs │ │ ├── DefaultValidation.cs │ │ ├── ResponseCodeValidation.cs │ │ └── ValidationHelper.cs ├── Logger.cs ├── OSTAGenerator │ ├── AuxiliarClasses │ │ ├── DataFile.cs │ │ ├── DataFileColumn.cs │ │ ├── OpenSTAUtils.cs │ │ ├── ParametrizedValue.cs │ │ ├── Repository.cs │ │ ├── SCLSnippets │ │ │ ├── AppearTextSection.cs │ │ │ ├── BuildBlobFromBlobSection.cs │ │ │ ├── BuildBlobFromUserSection.cs │ │ │ ├── CodeSection.cs │ │ │ ├── Comment.cs │ │ │ ├── ConstantDeclarationSection.cs │ │ │ ├── EndTimer.cs │ │ │ ├── EnviromentSection.cs │ │ │ ├── HeaderSection.cs │ │ │ ├── ISCLSections.cs │ │ │ ├── IncludeSecondaryScript.cs │ │ │ ├── IncludedScriptSection.cs │ │ │ ├── LoadCookieSection.cs │ │ │ ├── LogResponsesSection.cs │ │ │ ├── PlainCode.cs │ │ │ ├── RequestSection.cs │ │ │ ├── StartTimer.cs │ │ │ ├── ThinkTimeSection.cs │ │ │ └── VariableDeclaration.cs │ │ ├── Scripts │ │ │ ├── IScript.cs │ │ │ ├── IncludedScriptSCL.cs │ │ │ ├── MainScriptSCL.cs │ │ │ ├── ScriptInc.cs │ │ │ └── ScriptSCL.cs │ │ ├── SessionUtils.cs │ │ ├── Variable.cs │ │ └── VariablesScopes.cs │ ├── OpenSTAGenerator.cs │ ├── PageRequest.cs │ ├── ParameterExtractor │ │ └── OSTARegExParameter.cs │ ├── Step.cs │ └── Validations │ │ ├── AppearTextValidation.cs │ │ ├── CheckMainObjectValidation.cs │ │ ├── DefaultValidation.cs │ │ └── ResponseCodeValidation.cs ├── Properties │ └── AssemblyInfo.cs ├── Readme.txt ├── ScriptGenerator.cs └── TestingGenerator │ ├── PageRequest.cs │ ├── ParameterExtractor │ └── TestRegExParameter.cs │ ├── Step.cs │ └── TestingGenerator.cs ├── Generators.sln ├── README.md ├── ScriptGeneratorCLI_4.5 ├── App.config ├── Command.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── ScriptGeneratorCLI_4.5.csproj └── packages.config ├── ScriptGeneratorGUI_3.5 ├── App.xaml ├── App.xaml.cs ├── MainWindow.xaml ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings └── ScriptGeneratorGUI_3.5.csproj ├── ScriptGeneratorGUI_4.5 ├── App.xaml ├── App.xaml.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── ScriptGeneratorGUI_4.5.csproj └── app.config ├── clear.bat ├── copyLastVersion.bat └── dependencies ├── .NET_3.5 ├── FiddlerCore.dll └── Newtonsoft.Json.dll ├── .NET_4.5 ├── FiddlerCore.dll └── Newtonsoft.Json.dll ├── Abstracta.GXtest.Utils.dll ├── ICSharpCode.SharpZipLib.dll ├── Ionic.Zip.dll └── Simplicit.Net.Lzo.dll /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/.gitignore -------------------------------------------------------------------------------- /Binaries .NET 3.5/Abstracta.FiddlerSessionComparer_3.5.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/Binaries .NET 3.5/Abstracta.FiddlerSessionComparer_3.5.dll -------------------------------------------------------------------------------- /Binaries .NET 3.5/Abstracta.GXtest.Utils.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/Binaries .NET 3.5/Abstracta.GXtest.Utils.dll -------------------------------------------------------------------------------- /Binaries .NET 3.5/Abstracta.Generator_3.5.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/Binaries .NET 3.5/Abstracta.Generator_3.5.dll -------------------------------------------------------------------------------- /Binaries .NET 3.5/Abstracta.ScriptGeneratorGUI_3.5.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/Binaries .NET 3.5/Abstracta.ScriptGeneratorGUI_3.5.exe -------------------------------------------------------------------------------- /Binaries .NET 3.5/FiddlerCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/Binaries .NET 3.5/FiddlerCore.dll -------------------------------------------------------------------------------- /Binaries .NET 3.5/Ionic.Zip.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/Binaries .NET 3.5/Ionic.Zip.dll -------------------------------------------------------------------------------- /Binaries .NET 3.5/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/Binaries .NET 3.5/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Binaries .NET 3.5/Simplicit.Net.Lzo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/Binaries .NET 3.5/Simplicit.Net.Lzo.dll -------------------------------------------------------------------------------- /Binaries .NET 4.5/Abstracta.FiddlerSessionComparer_4.5.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/Binaries .NET 4.5/Abstracta.FiddlerSessionComparer_4.5.dll -------------------------------------------------------------------------------- /Binaries .NET 4.5/Abstracta.GXtest.Utils.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/Binaries .NET 4.5/Abstracta.GXtest.Utils.dll -------------------------------------------------------------------------------- /Binaries .NET 4.5/Abstracta.Generator_4.5.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/Binaries .NET 4.5/Abstracta.Generator_4.5.dll -------------------------------------------------------------------------------- /Binaries .NET 4.5/Abstracta.ScriptGeneratorCLI_4.5.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/Binaries .NET 4.5/Abstracta.ScriptGeneratorCLI_4.5.exe -------------------------------------------------------------------------------- /Binaries .NET 4.5/Abstracta.ScriptGeneratorGUI_4.5.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/Binaries .NET 4.5/Abstracta.ScriptGeneratorGUI_4.5.exe -------------------------------------------------------------------------------- /Binaries .NET 4.5/FiddlerCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/Binaries .NET 4.5/FiddlerCore.dll -------------------------------------------------------------------------------- /Binaries .NET 4.5/Ionic.Zip.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/Binaries .NET 4.5/Ionic.Zip.dll -------------------------------------------------------------------------------- /Binaries .NET 4.5/ManyConsole.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/Binaries .NET 4.5/ManyConsole.dll -------------------------------------------------------------------------------- /Binaries .NET 4.5/NDesk.Options.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/Binaries .NET 4.5/NDesk.Options.dll -------------------------------------------------------------------------------- /Binaries .NET 4.5/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/Binaries .NET 4.5/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Binaries .NET 4.5/Simplicit.Net.Lzo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/Binaries .NET 4.5/Simplicit.Net.Lzo.dll -------------------------------------------------------------------------------- /Examples/duckduckgo/AutoGeneratedScriptName.jmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/Examples/duckduckgo/AutoGeneratedScriptName.jmx -------------------------------------------------------------------------------- /Examples/duckduckgo/ProcessingResult.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/Examples/duckduckgo/ProcessingResult.txt -------------------------------------------------------------------------------- /Examples/duckduckgo/sessions.saz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/Examples/duckduckgo/sessions.saz -------------------------------------------------------------------------------- /FiddlerSessionComparerCLI_3.5/FiddlerSessionComparerCLI_3.5.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/FiddlerSessionComparerCLI_3.5/FiddlerSessionComparerCLI_3.5.csproj -------------------------------------------------------------------------------- /FiddlerSessionComparerCLI_3.5/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/FiddlerSessionComparerCLI_3.5/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /FiddlerSessionComparerCLI_3.5/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/FiddlerSessionComparerCLI_3.5/app.config -------------------------------------------------------------------------------- /FiddlerSessionComparerCLI_4.5/FiddlerSessionComparerCLI_4.5.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/FiddlerSessionComparerCLI_4.5/FiddlerSessionComparerCLI_4.5.csproj -------------------------------------------------------------------------------- /FiddlerSessionComparerCLI_4.5/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/FiddlerSessionComparerCLI_4.5/Program.cs -------------------------------------------------------------------------------- /FiddlerSessionComparerCLI_4.5/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/FiddlerSessionComparerCLI_4.5/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /FiddlerSessionComparerCLI_4.5/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/FiddlerSessionComparerCLI_4.5/app.config -------------------------------------------------------------------------------- /FiddlerSessionComparerGUI_4.5/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/FiddlerSessionComparerGUI_4.5/App.config -------------------------------------------------------------------------------- /FiddlerSessionComparerGUI_4.5/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/FiddlerSessionComparerGUI_4.5/App.xaml -------------------------------------------------------------------------------- /FiddlerSessionComparerGUI_4.5/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/FiddlerSessionComparerGUI_4.5/App.xaml.cs -------------------------------------------------------------------------------- /FiddlerSessionComparerGUI_4.5/FiddlerSessionComparerGUI_4.5.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/FiddlerSessionComparerGUI_4.5/FiddlerSessionComparerGUI_4.5.csproj -------------------------------------------------------------------------------- /FiddlerSessionComparerGUI_4.5/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/FiddlerSessionComparerGUI_4.5/MainWindow.xaml -------------------------------------------------------------------------------- /FiddlerSessionComparerGUI_4.5/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/FiddlerSessionComparerGUI_4.5/MainWindow.xaml.cs -------------------------------------------------------------------------------- /FiddlerSessionComparerGUI_4.5/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/FiddlerSessionComparerGUI_4.5/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /FiddlerSessionComparerGUI_4.5/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/FiddlerSessionComparerGUI_4.5/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /FiddlerSessionComparerGUI_4.5/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/FiddlerSessionComparerGUI_4.5/Properties/Resources.resx -------------------------------------------------------------------------------- /FiddlerSessionComparerGUI_4.5/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/FiddlerSessionComparerGUI_4.5/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /FiddlerSessionComparerGUI_4.5/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/FiddlerSessionComparerGUI_4.5/Properties/Settings.settings -------------------------------------------------------------------------------- /FiddlerSessionComparerGUI_4.5/Readme.txt: -------------------------------------------------------------------------------- 1 | http://jsonviewer.stack.hu/ -------------------------------------------------------------------------------- /FiddlerSessionComparerTests_4.5/FiddlerSessionComparerTests_4.5.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/FiddlerSessionComparerTests_4.5/FiddlerSessionComparerTests_4.5.csproj -------------------------------------------------------------------------------- /FiddlerSessionComparerTests_4.5/JSONParse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/FiddlerSessionComparerTests_4.5/JSONParse.cs -------------------------------------------------------------------------------- /FiddlerSessionComparerTests_4.5/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/FiddlerSessionComparerTests_4.5/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /FiddlerSessionComparerTests_4.5/XMLParse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/FiddlerSessionComparerTests_4.5/XMLParse.cs -------------------------------------------------------------------------------- /FiddlerSessionComparer_3.5/Content/Tuple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/FiddlerSessionComparer_3.5/Content/Tuple.cs -------------------------------------------------------------------------------- /FiddlerSessionComparer_3.5/FiddlerSessionComparer_3.5.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/FiddlerSessionComparer_3.5/FiddlerSessionComparer_3.5.csproj -------------------------------------------------------------------------------- /FiddlerSessionComparer_3.5/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/FiddlerSessionComparer_3.5/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /FiddlerSessionComparer_3.5/Utils/EmptyFile.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FiddlerSessionComparer_3.5/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/FiddlerSessionComparer_3.5/app.config -------------------------------------------------------------------------------- /FiddlerSessionComparer_4.5/ComparerResultType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/FiddlerSessionComparer_4.5/ComparerResultType.cs -------------------------------------------------------------------------------- /FiddlerSessionComparer_4.5/Content/ContentFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/FiddlerSessionComparer_4.5/Content/ContentFactory.cs -------------------------------------------------------------------------------- /FiddlerSessionComparer_4.5/Content/XmlContentType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/FiddlerSessionComparer_4.5/Content/XmlContentType.cs -------------------------------------------------------------------------------- /FiddlerSessionComparer_4.5/EqualsResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/FiddlerSessionComparer_4.5/EqualsResult.cs -------------------------------------------------------------------------------- /FiddlerSessionComparer_4.5/FiddlerSessionComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/FiddlerSessionComparer_4.5/FiddlerSessionComparer.cs -------------------------------------------------------------------------------- /FiddlerSessionComparer_4.5/FiddlerSessionComparer_4.5.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/FiddlerSessionComparer_4.5/FiddlerSessionComparer_4.5.csproj -------------------------------------------------------------------------------- /FiddlerSessionComparer_4.5/Page.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/FiddlerSessionComparer_4.5/Page.cs -------------------------------------------------------------------------------- /FiddlerSessionComparer_4.5/Parameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/FiddlerSessionComparer_4.5/Parameter.cs -------------------------------------------------------------------------------- /FiddlerSessionComparer_4.5/ParameterDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/FiddlerSessionComparer_4.5/ParameterDefinition.cs -------------------------------------------------------------------------------- /FiddlerSessionComparer_4.5/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/FiddlerSessionComparer_4.5/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /FiddlerSessionComparer_4.5/RegExpExtractor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/FiddlerSessionComparer_4.5/RegExpExtractor.cs -------------------------------------------------------------------------------- /FiddlerSessionComparer_4.5/Replacement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/FiddlerSessionComparer_4.5/Replacement.cs -------------------------------------------------------------------------------- /FiddlerSessionComparer_4.5/Utils/FiddlerSessionExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/FiddlerSessionComparer_4.5/Utils/FiddlerSessionExtension.cs -------------------------------------------------------------------------------- /FiddlerSessionComparer_4.5/Utils/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/FiddlerSessionComparer_4.5/Utils/Logger.cs -------------------------------------------------------------------------------- /FiddlerSessionComparer_4.5/Utils/NameFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/FiddlerSessionComparer_4.5/Utils/NameFactory.cs -------------------------------------------------------------------------------- /FiddlerSessionComparer_4.5/Utils/SAZ-DOTNETZIP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/FiddlerSessionComparer_4.5/Utils/SAZ-DOTNETZIP.cs -------------------------------------------------------------------------------- /FiddlerSessionComparer_4.5/Utils/SessionUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/FiddlerSessionComparer_4.5/Utils/SessionUtils.cs -------------------------------------------------------------------------------- /FiddlerSessionComparer_4.5/Utils/StringUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/FiddlerSessionComparer_4.5/Utils/StringUtils.cs -------------------------------------------------------------------------------- /FiddlerSessionComparer_4.5/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/FiddlerSessionComparer_4.5/app.config -------------------------------------------------------------------------------- /GeneratorFramework_3.5/AbstractGenerator/Extensions/EmptyFile.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GeneratorFramework_3.5/AbstractGenerator/ParameterExtractor/EmptyFile.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GeneratorFramework_3.5/AbstractGenerator/Validations/EmptyFile.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GeneratorFramework_3.5/AbstractGenerator/Wrapper/EmptyFile.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GeneratorFramework_3.5/AbstractGenerator/Wrappers/EmptyFile.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GeneratorFramework_3.5/Constants/EmptyFile.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GeneratorFramework_3.5/GeneratorFramework_3.5.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/GeneratorFramework_3.5/GeneratorFramework_3.5.csproj -------------------------------------------------------------------------------- /GeneratorFramework_3.5/JMeterGenerator/AuxiliarClasses/EmptyFile.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GeneratorFramework_3.5/JMeterGenerator/ParameterExtractor/EmptyFile.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GeneratorFramework_3.5/JMeterGenerator/Validations/EmptyFile.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GeneratorFramework_3.5/OSTAGenerator/AuxiliarClasses/SCLSnippets/EmptyFile.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GeneratorFramework_3.5/OSTAGenerator/AuxiliarClasses/Scripts/EmptyFile.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GeneratorFramework_3.5/OSTAGenerator/ParameterExtractor/EmptyFile.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GeneratorFramework_3.5/OSTAGenerator/Validations/EmptyFile.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GeneratorFramework_3.5/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/GeneratorFramework_3.5/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /GeneratorFramework_3.5/TestingGenerator/ParameterExtractor/EmptyFile.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GeneratorFramework_4.5/AbstractGenerator/AbstractFollowRedirect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/GeneratorFramework_4.5/AbstractGenerator/AbstractFollowRedirect.cs -------------------------------------------------------------------------------- /GeneratorFramework_4.5/AbstractGenerator/AbstractGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/GeneratorFramework_4.5/AbstractGenerator/AbstractGenerator.cs -------------------------------------------------------------------------------- /GeneratorFramework_4.5/AbstractGenerator/AbstractPageRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/GeneratorFramework_4.5/AbstractGenerator/AbstractPageRequest.cs -------------------------------------------------------------------------------- /GeneratorFramework_4.5/AbstractGenerator/AbstractStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/GeneratorFramework_4.5/AbstractGenerator/AbstractStep.cs -------------------------------------------------------------------------------- /GeneratorFramework_4.5/AbstractGenerator/Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/GeneratorFramework_4.5/AbstractGenerator/Command.cs -------------------------------------------------------------------------------- /GeneratorFramework_4.5/AbstractGenerator/DataPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/GeneratorFramework_4.5/AbstractGenerator/DataPool.cs -------------------------------------------------------------------------------- /GeneratorFramework_4.5/AbstractGenerator/HTTPRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/GeneratorFramework_4.5/AbstractGenerator/HTTPRequest.cs -------------------------------------------------------------------------------- /GeneratorFramework_4.5/AbstractGenerator/ParameterExtractor/AbstractParameterExtractor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/GeneratorFramework_4.5/AbstractGenerator/ParameterExtractor/AbstractParameterExtractor.cs -------------------------------------------------------------------------------- /GeneratorFramework_4.5/AbstractGenerator/ParameterExtractor/AbstractRegExParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/GeneratorFramework_4.5/AbstractGenerator/ParameterExtractor/AbstractRegExParameter.cs -------------------------------------------------------------------------------- /GeneratorFramework_4.5/AbstractGenerator/ParameterExtractor/NameGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/GeneratorFramework_4.5/AbstractGenerator/ParameterExtractor/NameGenerator.cs -------------------------------------------------------------------------------- /GeneratorFramework_4.5/AbstractGenerator/ParametersType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/GeneratorFramework_4.5/AbstractGenerator/ParametersType.cs -------------------------------------------------------------------------------- /GeneratorFramework_4.5/AbstractGenerator/Validations/AbstractValidation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/GeneratorFramework_4.5/AbstractGenerator/Validations/AbstractValidation.cs -------------------------------------------------------------------------------- /GeneratorFramework_4.5/AbstractGenerator/Validations/AppearTextValidation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/GeneratorFramework_4.5/AbstractGenerator/Validations/AppearTextValidation.cs -------------------------------------------------------------------------------- /GeneratorFramework_4.5/AbstractGenerator/Validations/CheckMainObjectValidation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/GeneratorFramework_4.5/AbstractGenerator/Validations/CheckMainObjectValidation.cs -------------------------------------------------------------------------------- /GeneratorFramework_4.5/AbstractGenerator/Validations/DefaultValidation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/GeneratorFramework_4.5/AbstractGenerator/Validations/DefaultValidation.cs -------------------------------------------------------------------------------- /GeneratorFramework_4.5/AbstractGenerator/Validations/ResponseCodeValidation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/GeneratorFramework_4.5/AbstractGenerator/Validations/ResponseCodeValidation.cs -------------------------------------------------------------------------------- /GeneratorFramework_4.5/AbstractGenerator/Wrappers/FiddlerSessionsWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/GeneratorFramework_4.5/AbstractGenerator/Wrappers/FiddlerSessionsWrapper.cs -------------------------------------------------------------------------------- /GeneratorFramework_4.5/AbstractGenerator/Wrappers/GXTestScriptWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/GeneratorFramework_4.5/AbstractGenerator/Wrappers/GXTestScriptWrapper.cs -------------------------------------------------------------------------------- /GeneratorFramework_4.5/Constants/HTTPConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/GeneratorFramework_4.5/Constants/HTTPConstants.cs -------------------------------------------------------------------------------- /GeneratorFramework_4.5/GeneratorFramework_4.5.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/GeneratorFramework_4.5/GeneratorFramework_4.5.csproj -------------------------------------------------------------------------------- /GeneratorFramework_4.5/JMeterGenerator/AuxiliarClasses/CommonArgumentTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/GeneratorFramework_4.5/JMeterGenerator/AuxiliarClasses/CommonArgumentTypes.cs -------------------------------------------------------------------------------- /GeneratorFramework_4.5/JMeterGenerator/AuxiliarClasses/CommonCollectorTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/GeneratorFramework_4.5/JMeterGenerator/AuxiliarClasses/CommonCollectorTypes.cs -------------------------------------------------------------------------------- /GeneratorFramework_4.5/JMeterGenerator/AuxiliarClasses/JMeterWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/GeneratorFramework_4.5/JMeterGenerator/AuxiliarClasses/JMeterWrapper.cs -------------------------------------------------------------------------------- /GeneratorFramework_4.5/JMeterGenerator/AuxiliarClasses/ThinktimeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/GeneratorFramework_4.5/JMeterGenerator/AuxiliarClasses/ThinktimeType.cs -------------------------------------------------------------------------------- /GeneratorFramework_4.5/JMeterGenerator/JMeterGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/GeneratorFramework_4.5/JMeterGenerator/JMeterGenerator.cs -------------------------------------------------------------------------------- /GeneratorFramework_4.5/JMeterGenerator/PageRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/GeneratorFramework_4.5/JMeterGenerator/PageRequest.cs -------------------------------------------------------------------------------- /GeneratorFramework_4.5/JMeterGenerator/ParameterExtractor/JMeterConstant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/GeneratorFramework_4.5/JMeterGenerator/ParameterExtractor/JMeterConstant.cs -------------------------------------------------------------------------------- /GeneratorFramework_4.5/JMeterGenerator/ParameterExtractor/JMeterRegExParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/GeneratorFramework_4.5/JMeterGenerator/ParameterExtractor/JMeterRegExParameter.cs -------------------------------------------------------------------------------- /GeneratorFramework_4.5/JMeterGenerator/Step.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/GeneratorFramework_4.5/JMeterGenerator/Step.cs -------------------------------------------------------------------------------- /GeneratorFramework_4.5/JMeterGenerator/Validations/AppearTextValidation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/GeneratorFramework_4.5/JMeterGenerator/Validations/AppearTextValidation.cs -------------------------------------------------------------------------------- /GeneratorFramework_4.5/JMeterGenerator/Validations/CheckMainObjectValidation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/GeneratorFramework_4.5/JMeterGenerator/Validations/CheckMainObjectValidation.cs -------------------------------------------------------------------------------- /GeneratorFramework_4.5/JMeterGenerator/Validations/DefaultValidation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/GeneratorFramework_4.5/JMeterGenerator/Validations/DefaultValidation.cs -------------------------------------------------------------------------------- /GeneratorFramework_4.5/JMeterGenerator/Validations/ResponseCodeValidation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/GeneratorFramework_4.5/JMeterGenerator/Validations/ResponseCodeValidation.cs -------------------------------------------------------------------------------- /GeneratorFramework_4.5/JMeterGenerator/Validations/ValidationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/GeneratorFramework_4.5/JMeterGenerator/Validations/ValidationHelper.cs -------------------------------------------------------------------------------- /GeneratorFramework_4.5/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/GeneratorFramework_4.5/Logger.cs -------------------------------------------------------------------------------- /GeneratorFramework_4.5/OSTAGenerator/AuxiliarClasses/DataFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/GeneratorFramework_4.5/OSTAGenerator/AuxiliarClasses/DataFile.cs -------------------------------------------------------------------------------- /GeneratorFramework_4.5/OSTAGenerator/AuxiliarClasses/DataFileColumn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/GeneratorFramework_4.5/OSTAGenerator/AuxiliarClasses/DataFileColumn.cs -------------------------------------------------------------------------------- /GeneratorFramework_4.5/OSTAGenerator/AuxiliarClasses/OpenSTAUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/GeneratorFramework_4.5/OSTAGenerator/AuxiliarClasses/OpenSTAUtils.cs -------------------------------------------------------------------------------- /GeneratorFramework_4.5/OSTAGenerator/AuxiliarClasses/ParametrizedValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/GeneratorFramework_4.5/OSTAGenerator/AuxiliarClasses/ParametrizedValue.cs -------------------------------------------------------------------------------- /GeneratorFramework_4.5/OSTAGenerator/AuxiliarClasses/Repository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/GeneratorFramework_4.5/OSTAGenerator/AuxiliarClasses/Repository.cs -------------------------------------------------------------------------------- /GeneratorFramework_4.5/OSTAGenerator/AuxiliarClasses/SCLSnippets/AppearTextSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/GeneratorFramework_4.5/OSTAGenerator/AuxiliarClasses/SCLSnippets/AppearTextSection.cs -------------------------------------------------------------------------------- /GeneratorFramework_4.5/OSTAGenerator/AuxiliarClasses/SCLSnippets/BuildBlobFromBlobSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/GeneratorFramework_4.5/OSTAGenerator/AuxiliarClasses/SCLSnippets/BuildBlobFromBlobSection.cs -------------------------------------------------------------------------------- /GeneratorFramework_4.5/OSTAGenerator/AuxiliarClasses/SCLSnippets/BuildBlobFromUserSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/GeneratorFramework_4.5/OSTAGenerator/AuxiliarClasses/SCLSnippets/BuildBlobFromUserSection.cs -------------------------------------------------------------------------------- /GeneratorFramework_4.5/OSTAGenerator/AuxiliarClasses/SCLSnippets/CodeSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/GeneratorFramework_4.5/OSTAGenerator/AuxiliarClasses/SCLSnippets/CodeSection.cs -------------------------------------------------------------------------------- /GeneratorFramework_4.5/OSTAGenerator/AuxiliarClasses/SCLSnippets/Comment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/GeneratorFramework_4.5/OSTAGenerator/AuxiliarClasses/SCLSnippets/Comment.cs -------------------------------------------------------------------------------- /GeneratorFramework_4.5/OSTAGenerator/AuxiliarClasses/SCLSnippets/ConstantDeclarationSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/GeneratorFramework_4.5/OSTAGenerator/AuxiliarClasses/SCLSnippets/ConstantDeclarationSection.cs -------------------------------------------------------------------------------- /GeneratorFramework_4.5/OSTAGenerator/AuxiliarClasses/SCLSnippets/EndTimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/GeneratorFramework_4.5/OSTAGenerator/AuxiliarClasses/SCLSnippets/EndTimer.cs -------------------------------------------------------------------------------- /GeneratorFramework_4.5/OSTAGenerator/AuxiliarClasses/SCLSnippets/EnviromentSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/GeneratorFramework_4.5/OSTAGenerator/AuxiliarClasses/SCLSnippets/EnviromentSection.cs -------------------------------------------------------------------------------- /GeneratorFramework_4.5/OSTAGenerator/AuxiliarClasses/SCLSnippets/HeaderSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/GeneratorFramework_4.5/OSTAGenerator/AuxiliarClasses/SCLSnippets/HeaderSection.cs -------------------------------------------------------------------------------- /GeneratorFramework_4.5/OSTAGenerator/AuxiliarClasses/SCLSnippets/ISCLSections.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/GeneratorFramework_4.5/OSTAGenerator/AuxiliarClasses/SCLSnippets/ISCLSections.cs -------------------------------------------------------------------------------- /GeneratorFramework_4.5/OSTAGenerator/AuxiliarClasses/SCLSnippets/IncludeSecondaryScript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/GeneratorFramework_4.5/OSTAGenerator/AuxiliarClasses/SCLSnippets/IncludeSecondaryScript.cs -------------------------------------------------------------------------------- /GeneratorFramework_4.5/OSTAGenerator/AuxiliarClasses/SCLSnippets/IncludedScriptSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/GeneratorFramework_4.5/OSTAGenerator/AuxiliarClasses/SCLSnippets/IncludedScriptSection.cs -------------------------------------------------------------------------------- /GeneratorFramework_4.5/OSTAGenerator/AuxiliarClasses/SCLSnippets/LoadCookieSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/GeneratorFramework_4.5/OSTAGenerator/AuxiliarClasses/SCLSnippets/LoadCookieSection.cs -------------------------------------------------------------------------------- /GeneratorFramework_4.5/OSTAGenerator/AuxiliarClasses/SCLSnippets/LogResponsesSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/GeneratorFramework_4.5/OSTAGenerator/AuxiliarClasses/SCLSnippets/LogResponsesSection.cs -------------------------------------------------------------------------------- /GeneratorFramework_4.5/OSTAGenerator/AuxiliarClasses/SCLSnippets/PlainCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/GeneratorFramework_4.5/OSTAGenerator/AuxiliarClasses/SCLSnippets/PlainCode.cs -------------------------------------------------------------------------------- /GeneratorFramework_4.5/OSTAGenerator/AuxiliarClasses/SCLSnippets/RequestSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/GeneratorFramework_4.5/OSTAGenerator/AuxiliarClasses/SCLSnippets/RequestSection.cs -------------------------------------------------------------------------------- /GeneratorFramework_4.5/OSTAGenerator/AuxiliarClasses/SCLSnippets/StartTimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/GeneratorFramework_4.5/OSTAGenerator/AuxiliarClasses/SCLSnippets/StartTimer.cs -------------------------------------------------------------------------------- /GeneratorFramework_4.5/OSTAGenerator/AuxiliarClasses/SCLSnippets/ThinkTimeSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/GeneratorFramework_4.5/OSTAGenerator/AuxiliarClasses/SCLSnippets/ThinkTimeSection.cs -------------------------------------------------------------------------------- /GeneratorFramework_4.5/OSTAGenerator/AuxiliarClasses/SCLSnippets/VariableDeclaration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/GeneratorFramework_4.5/OSTAGenerator/AuxiliarClasses/SCLSnippets/VariableDeclaration.cs -------------------------------------------------------------------------------- /GeneratorFramework_4.5/OSTAGenerator/AuxiliarClasses/Scripts/IScript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/GeneratorFramework_4.5/OSTAGenerator/AuxiliarClasses/Scripts/IScript.cs -------------------------------------------------------------------------------- /GeneratorFramework_4.5/OSTAGenerator/AuxiliarClasses/Scripts/IncludedScriptSCL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/GeneratorFramework_4.5/OSTAGenerator/AuxiliarClasses/Scripts/IncludedScriptSCL.cs -------------------------------------------------------------------------------- /GeneratorFramework_4.5/OSTAGenerator/AuxiliarClasses/Scripts/MainScriptSCL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/GeneratorFramework_4.5/OSTAGenerator/AuxiliarClasses/Scripts/MainScriptSCL.cs -------------------------------------------------------------------------------- /GeneratorFramework_4.5/OSTAGenerator/AuxiliarClasses/Scripts/ScriptInc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/GeneratorFramework_4.5/OSTAGenerator/AuxiliarClasses/Scripts/ScriptInc.cs -------------------------------------------------------------------------------- /GeneratorFramework_4.5/OSTAGenerator/AuxiliarClasses/Scripts/ScriptSCL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/GeneratorFramework_4.5/OSTAGenerator/AuxiliarClasses/Scripts/ScriptSCL.cs -------------------------------------------------------------------------------- /GeneratorFramework_4.5/OSTAGenerator/AuxiliarClasses/SessionUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/GeneratorFramework_4.5/OSTAGenerator/AuxiliarClasses/SessionUtils.cs -------------------------------------------------------------------------------- /GeneratorFramework_4.5/OSTAGenerator/AuxiliarClasses/Variable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/GeneratorFramework_4.5/OSTAGenerator/AuxiliarClasses/Variable.cs -------------------------------------------------------------------------------- /GeneratorFramework_4.5/OSTAGenerator/AuxiliarClasses/VariablesScopes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/GeneratorFramework_4.5/OSTAGenerator/AuxiliarClasses/VariablesScopes.cs -------------------------------------------------------------------------------- /GeneratorFramework_4.5/OSTAGenerator/OpenSTAGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/GeneratorFramework_4.5/OSTAGenerator/OpenSTAGenerator.cs -------------------------------------------------------------------------------- /GeneratorFramework_4.5/OSTAGenerator/PageRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/GeneratorFramework_4.5/OSTAGenerator/PageRequest.cs -------------------------------------------------------------------------------- /GeneratorFramework_4.5/OSTAGenerator/ParameterExtractor/OSTARegExParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/GeneratorFramework_4.5/OSTAGenerator/ParameterExtractor/OSTARegExParameter.cs -------------------------------------------------------------------------------- /GeneratorFramework_4.5/OSTAGenerator/Step.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/GeneratorFramework_4.5/OSTAGenerator/Step.cs -------------------------------------------------------------------------------- /GeneratorFramework_4.5/OSTAGenerator/Validations/AppearTextValidation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/GeneratorFramework_4.5/OSTAGenerator/Validations/AppearTextValidation.cs -------------------------------------------------------------------------------- /GeneratorFramework_4.5/OSTAGenerator/Validations/CheckMainObjectValidation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/GeneratorFramework_4.5/OSTAGenerator/Validations/CheckMainObjectValidation.cs -------------------------------------------------------------------------------- /GeneratorFramework_4.5/OSTAGenerator/Validations/DefaultValidation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/GeneratorFramework_4.5/OSTAGenerator/Validations/DefaultValidation.cs -------------------------------------------------------------------------------- /GeneratorFramework_4.5/OSTAGenerator/Validations/ResponseCodeValidation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/GeneratorFramework_4.5/OSTAGenerator/Validations/ResponseCodeValidation.cs -------------------------------------------------------------------------------- /GeneratorFramework_4.5/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/GeneratorFramework_4.5/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /GeneratorFramework_4.5/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/GeneratorFramework_4.5/Readme.txt -------------------------------------------------------------------------------- /GeneratorFramework_4.5/ScriptGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/GeneratorFramework_4.5/ScriptGenerator.cs -------------------------------------------------------------------------------- /GeneratorFramework_4.5/TestingGenerator/PageRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/GeneratorFramework_4.5/TestingGenerator/PageRequest.cs -------------------------------------------------------------------------------- /GeneratorFramework_4.5/TestingGenerator/ParameterExtractor/TestRegExParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/GeneratorFramework_4.5/TestingGenerator/ParameterExtractor/TestRegExParameter.cs -------------------------------------------------------------------------------- /GeneratorFramework_4.5/TestingGenerator/Step.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/GeneratorFramework_4.5/TestingGenerator/Step.cs -------------------------------------------------------------------------------- /GeneratorFramework_4.5/TestingGenerator/TestingGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/GeneratorFramework_4.5/TestingGenerator/TestingGenerator.cs -------------------------------------------------------------------------------- /Generators.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/Generators.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/README.md -------------------------------------------------------------------------------- /ScriptGeneratorCLI_4.5/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/ScriptGeneratorCLI_4.5/App.config -------------------------------------------------------------------------------- /ScriptGeneratorCLI_4.5/Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/ScriptGeneratorCLI_4.5/Command.cs -------------------------------------------------------------------------------- /ScriptGeneratorCLI_4.5/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/ScriptGeneratorCLI_4.5/Program.cs -------------------------------------------------------------------------------- /ScriptGeneratorCLI_4.5/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/ScriptGeneratorCLI_4.5/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ScriptGeneratorCLI_4.5/ScriptGeneratorCLI_4.5.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/ScriptGeneratorCLI_4.5/ScriptGeneratorCLI_4.5.csproj -------------------------------------------------------------------------------- /ScriptGeneratorCLI_4.5/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/ScriptGeneratorCLI_4.5/packages.config -------------------------------------------------------------------------------- /ScriptGeneratorGUI_3.5/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/ScriptGeneratorGUI_3.5/App.xaml -------------------------------------------------------------------------------- /ScriptGeneratorGUI_3.5/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/ScriptGeneratorGUI_3.5/App.xaml.cs -------------------------------------------------------------------------------- /ScriptGeneratorGUI_3.5/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/ScriptGeneratorGUI_3.5/MainWindow.xaml -------------------------------------------------------------------------------- /ScriptGeneratorGUI_3.5/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/ScriptGeneratorGUI_3.5/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ScriptGeneratorGUI_3.5/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/ScriptGeneratorGUI_3.5/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /ScriptGeneratorGUI_3.5/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/ScriptGeneratorGUI_3.5/Properties/Resources.resx -------------------------------------------------------------------------------- /ScriptGeneratorGUI_3.5/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/ScriptGeneratorGUI_3.5/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /ScriptGeneratorGUI_3.5/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/ScriptGeneratorGUI_3.5/Properties/Settings.settings -------------------------------------------------------------------------------- /ScriptGeneratorGUI_3.5/ScriptGeneratorGUI_3.5.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/ScriptGeneratorGUI_3.5/ScriptGeneratorGUI_3.5.csproj -------------------------------------------------------------------------------- /ScriptGeneratorGUI_4.5/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/ScriptGeneratorGUI_4.5/App.xaml -------------------------------------------------------------------------------- /ScriptGeneratorGUI_4.5/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/ScriptGeneratorGUI_4.5/App.xaml.cs -------------------------------------------------------------------------------- /ScriptGeneratorGUI_4.5/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/ScriptGeneratorGUI_4.5/MainWindow.xaml -------------------------------------------------------------------------------- /ScriptGeneratorGUI_4.5/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/ScriptGeneratorGUI_4.5/MainWindow.xaml.cs -------------------------------------------------------------------------------- /ScriptGeneratorGUI_4.5/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/ScriptGeneratorGUI_4.5/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ScriptGeneratorGUI_4.5/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/ScriptGeneratorGUI_4.5/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /ScriptGeneratorGUI_4.5/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/ScriptGeneratorGUI_4.5/Properties/Resources.resx -------------------------------------------------------------------------------- /ScriptGeneratorGUI_4.5/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/ScriptGeneratorGUI_4.5/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /ScriptGeneratorGUI_4.5/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/ScriptGeneratorGUI_4.5/Properties/Settings.settings -------------------------------------------------------------------------------- /ScriptGeneratorGUI_4.5/ScriptGeneratorGUI_4.5.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/ScriptGeneratorGUI_4.5/ScriptGeneratorGUI_4.5.csproj -------------------------------------------------------------------------------- /ScriptGeneratorGUI_4.5/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/ScriptGeneratorGUI_4.5/app.config -------------------------------------------------------------------------------- /clear.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/clear.bat -------------------------------------------------------------------------------- /copyLastVersion.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/copyLastVersion.bat -------------------------------------------------------------------------------- /dependencies/.NET_3.5/FiddlerCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/dependencies/.NET_3.5/FiddlerCore.dll -------------------------------------------------------------------------------- /dependencies/.NET_3.5/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/dependencies/.NET_3.5/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /dependencies/.NET_4.5/FiddlerCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/dependencies/.NET_4.5/FiddlerCore.dll -------------------------------------------------------------------------------- /dependencies/.NET_4.5/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/dependencies/.NET_4.5/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /dependencies/Abstracta.GXtest.Utils.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/dependencies/Abstracta.GXtest.Utils.dll -------------------------------------------------------------------------------- /dependencies/ICSharpCode.SharpZipLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/dependencies/ICSharpCode.SharpZipLib.dll -------------------------------------------------------------------------------- /dependencies/Ionic.Zip.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/dependencies/Ionic.Zip.dll -------------------------------------------------------------------------------- /dependencies/Simplicit.Net.Lzo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstracta/ScriptGenerator/HEAD/dependencies/Simplicit.Net.Lzo.dll --------------------------------------------------------------------------------