├── .gitignore ├── CC.AutomatedTesting.Cmd.sln ├── CC.AutomatedTesting.Demo ├── App.config ├── CC.AutomatedTesting.Demo.csproj ├── ChromeDriver与Chrome版本对应.txt ├── ProcessControl.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── ReadME.txt ├── Reports │ └── MyOwnReport.html ├── bitbug_favicon.ico ├── packages.config ├── 使用时注意事项.txt └── 脚本 │ └── 流程1 │ └── 贴吧登录.txt ├── CC.AutomatedTesting.Extends.Cloud ├── CC.AutomatedTesting.Extends.Cloud.csproj ├── LoginTiebaAction.cs ├── Properties │ └── AssemblyInfo.cs ├── Random.cs ├── SearchAction.cs ├── TableList │ └── AssertTableExistLinkText.cs ├── TestAssert1Action.cs ├── TestAssert2Action.cs ├── ThreadSleepAction.cs ├── app.config └── packages.config ├── CC.AutomatedTesting.Infrastructure.Tests ├── CC.AutomatedTesting.Infrastructure.Tests.csproj ├── Properties │ └── AssemblyInfo.cs ├── TextAnalyzer │ └── AnalyzerTests.cs ├── UserFunction │ └── FunctionTest.cs ├── VersionControl │ └── VersionHelperTests.cs ├── app.config └── 脚本 │ └── 函数1.txt ├── CC.AutomatedTesting.Infrastructure ├── ActionFactory │ ├── AssertActionFactory.cs │ ├── FuncActionFactory.cs │ ├── IActionFactory.cs │ ├── JsOrHtmlActionContainer.cs │ ├── PerformActionFactory.cs │ └── TypeContainer.cs ├── Bizbases │ ├── Action.cs │ ├── ActionDescription.cs │ ├── ActionMethodAttribute.cs │ ├── AssertAction.cs │ ├── CommonActions │ │ ├── HtmlAssertAction.cs │ │ ├── HtmlPerfromAction.cs │ │ ├── JsAssertAction.cs │ │ └── JsPerfromAction.cs │ ├── FuncAction.cs │ ├── FunctionAction.cs │ ├── IAssert.cs │ ├── IPerform.cs │ ├── IPreconditionCheck.cs │ ├── PerformAction.cs │ └── VersionControlAttribute.cs ├── CC.AutomatedTesting.Infrastructure.csproj ├── Common │ ├── DictionaryExtensions.cs │ ├── RetryHelper.cs │ └── ValueConverter.cs ├── Constants.cs ├── ConstructingContext.cs ├── Exceptions │ └── BizException.cs ├── Extensions │ ├── StringEx.cs │ ├── WebDriverEx.cs │ ├── WebDriverWaitEx.cs │ └── WebElementEx.cs ├── FunctionProcessor │ └── FuncProcessor.cs ├── Jquery │ └── JQueryExecutor.cs ├── Log │ └── Computer.cs ├── ParallelRun │ └── TPLManager.cs ├── Properties │ └── AssemblyInfo.cs ├── TestCase.cs ├── TestCaseExecuter.cs ├── TestCaseFactory.cs ├── TestSuite.cs ├── TestSuiteFactory.cs ├── TestSuiteRunner.cs ├── TextAnalyzer │ ├── Analyzer.cs │ └── Escaper.cs ├── WebDriverFactory.cs ├── app.config └── packages.config ├── CC.AutomatedTesting.Reporting ├── CC.AutomatedTesting.Reporting.csproj ├── ExtentReport.cs ├── IReport.cs ├── Properties │ └── AssemblyInfo.cs ├── ReportFactory.cs └── packages.config ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas20029/AutomatedTesting/HEAD/.gitignore -------------------------------------------------------------------------------- /CC.AutomatedTesting.Cmd.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas20029/AutomatedTesting/HEAD/CC.AutomatedTesting.Cmd.sln -------------------------------------------------------------------------------- /CC.AutomatedTesting.Demo/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas20029/AutomatedTesting/HEAD/CC.AutomatedTesting.Demo/App.config -------------------------------------------------------------------------------- /CC.AutomatedTesting.Demo/CC.AutomatedTesting.Demo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas20029/AutomatedTesting/HEAD/CC.AutomatedTesting.Demo/CC.AutomatedTesting.Demo.csproj -------------------------------------------------------------------------------- /CC.AutomatedTesting.Demo/ChromeDriver与Chrome版本对应.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas20029/AutomatedTesting/HEAD/CC.AutomatedTesting.Demo/ChromeDriver与Chrome版本对应.txt -------------------------------------------------------------------------------- /CC.AutomatedTesting.Demo/ProcessControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas20029/AutomatedTesting/HEAD/CC.AutomatedTesting.Demo/ProcessControl.cs -------------------------------------------------------------------------------- /CC.AutomatedTesting.Demo/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas20029/AutomatedTesting/HEAD/CC.AutomatedTesting.Demo/Program.cs -------------------------------------------------------------------------------- /CC.AutomatedTesting.Demo/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas20029/AutomatedTesting/HEAD/CC.AutomatedTesting.Demo/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CC.AutomatedTesting.Demo/ReadME.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas20029/AutomatedTesting/HEAD/CC.AutomatedTesting.Demo/ReadME.txt -------------------------------------------------------------------------------- /CC.AutomatedTesting.Demo/Reports/MyOwnReport.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas20029/AutomatedTesting/HEAD/CC.AutomatedTesting.Demo/Reports/MyOwnReport.html -------------------------------------------------------------------------------- /CC.AutomatedTesting.Demo/bitbug_favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas20029/AutomatedTesting/HEAD/CC.AutomatedTesting.Demo/bitbug_favicon.ico -------------------------------------------------------------------------------- /CC.AutomatedTesting.Demo/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas20029/AutomatedTesting/HEAD/CC.AutomatedTesting.Demo/packages.config -------------------------------------------------------------------------------- /CC.AutomatedTesting.Demo/使用时注意事项.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas20029/AutomatedTesting/HEAD/CC.AutomatedTesting.Demo/使用时注意事项.txt -------------------------------------------------------------------------------- /CC.AutomatedTesting.Demo/脚本/流程1/贴吧登录.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas20029/AutomatedTesting/HEAD/CC.AutomatedTesting.Demo/脚本/流程1/贴吧登录.txt -------------------------------------------------------------------------------- /CC.AutomatedTesting.Extends.Cloud/CC.AutomatedTesting.Extends.Cloud.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas20029/AutomatedTesting/HEAD/CC.AutomatedTesting.Extends.Cloud/CC.AutomatedTesting.Extends.Cloud.csproj -------------------------------------------------------------------------------- /CC.AutomatedTesting.Extends.Cloud/LoginTiebaAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas20029/AutomatedTesting/HEAD/CC.AutomatedTesting.Extends.Cloud/LoginTiebaAction.cs -------------------------------------------------------------------------------- /CC.AutomatedTesting.Extends.Cloud/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas20029/AutomatedTesting/HEAD/CC.AutomatedTesting.Extends.Cloud/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CC.AutomatedTesting.Extends.Cloud/Random.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas20029/AutomatedTesting/HEAD/CC.AutomatedTesting.Extends.Cloud/Random.cs -------------------------------------------------------------------------------- /CC.AutomatedTesting.Extends.Cloud/SearchAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas20029/AutomatedTesting/HEAD/CC.AutomatedTesting.Extends.Cloud/SearchAction.cs -------------------------------------------------------------------------------- /CC.AutomatedTesting.Extends.Cloud/TableList/AssertTableExistLinkText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas20029/AutomatedTesting/HEAD/CC.AutomatedTesting.Extends.Cloud/TableList/AssertTableExistLinkText.cs -------------------------------------------------------------------------------- /CC.AutomatedTesting.Extends.Cloud/TestAssert1Action.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas20029/AutomatedTesting/HEAD/CC.AutomatedTesting.Extends.Cloud/TestAssert1Action.cs -------------------------------------------------------------------------------- /CC.AutomatedTesting.Extends.Cloud/TestAssert2Action.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas20029/AutomatedTesting/HEAD/CC.AutomatedTesting.Extends.Cloud/TestAssert2Action.cs -------------------------------------------------------------------------------- /CC.AutomatedTesting.Extends.Cloud/ThreadSleepAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas20029/AutomatedTesting/HEAD/CC.AutomatedTesting.Extends.Cloud/ThreadSleepAction.cs -------------------------------------------------------------------------------- /CC.AutomatedTesting.Extends.Cloud/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas20029/AutomatedTesting/HEAD/CC.AutomatedTesting.Extends.Cloud/app.config -------------------------------------------------------------------------------- /CC.AutomatedTesting.Extends.Cloud/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas20029/AutomatedTesting/HEAD/CC.AutomatedTesting.Extends.Cloud/packages.config -------------------------------------------------------------------------------- /CC.AutomatedTesting.Infrastructure.Tests/CC.AutomatedTesting.Infrastructure.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas20029/AutomatedTesting/HEAD/CC.AutomatedTesting.Infrastructure.Tests/CC.AutomatedTesting.Infrastructure.Tests.csproj -------------------------------------------------------------------------------- /CC.AutomatedTesting.Infrastructure.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas20029/AutomatedTesting/HEAD/CC.AutomatedTesting.Infrastructure.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CC.AutomatedTesting.Infrastructure.Tests/TextAnalyzer/AnalyzerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas20029/AutomatedTesting/HEAD/CC.AutomatedTesting.Infrastructure.Tests/TextAnalyzer/AnalyzerTests.cs -------------------------------------------------------------------------------- /CC.AutomatedTesting.Infrastructure.Tests/UserFunction/FunctionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas20029/AutomatedTesting/HEAD/CC.AutomatedTesting.Infrastructure.Tests/UserFunction/FunctionTest.cs -------------------------------------------------------------------------------- /CC.AutomatedTesting.Infrastructure.Tests/VersionControl/VersionHelperTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas20029/AutomatedTesting/HEAD/CC.AutomatedTesting.Infrastructure.Tests/VersionControl/VersionHelperTests.cs -------------------------------------------------------------------------------- /CC.AutomatedTesting.Infrastructure.Tests/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas20029/AutomatedTesting/HEAD/CC.AutomatedTesting.Infrastructure.Tests/app.config -------------------------------------------------------------------------------- /CC.AutomatedTesting.Infrastructure.Tests/脚本/函数1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas20029/AutomatedTesting/HEAD/CC.AutomatedTesting.Infrastructure.Tests/脚本/函数1.txt -------------------------------------------------------------------------------- /CC.AutomatedTesting.Infrastructure/ActionFactory/AssertActionFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas20029/AutomatedTesting/HEAD/CC.AutomatedTesting.Infrastructure/ActionFactory/AssertActionFactory.cs -------------------------------------------------------------------------------- /CC.AutomatedTesting.Infrastructure/ActionFactory/FuncActionFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas20029/AutomatedTesting/HEAD/CC.AutomatedTesting.Infrastructure/ActionFactory/FuncActionFactory.cs -------------------------------------------------------------------------------- /CC.AutomatedTesting.Infrastructure/ActionFactory/IActionFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas20029/AutomatedTesting/HEAD/CC.AutomatedTesting.Infrastructure/ActionFactory/IActionFactory.cs -------------------------------------------------------------------------------- /CC.AutomatedTesting.Infrastructure/ActionFactory/JsOrHtmlActionContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas20029/AutomatedTesting/HEAD/CC.AutomatedTesting.Infrastructure/ActionFactory/JsOrHtmlActionContainer.cs -------------------------------------------------------------------------------- /CC.AutomatedTesting.Infrastructure/ActionFactory/PerformActionFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas20029/AutomatedTesting/HEAD/CC.AutomatedTesting.Infrastructure/ActionFactory/PerformActionFactory.cs -------------------------------------------------------------------------------- /CC.AutomatedTesting.Infrastructure/ActionFactory/TypeContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas20029/AutomatedTesting/HEAD/CC.AutomatedTesting.Infrastructure/ActionFactory/TypeContainer.cs -------------------------------------------------------------------------------- /CC.AutomatedTesting.Infrastructure/Bizbases/Action.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas20029/AutomatedTesting/HEAD/CC.AutomatedTesting.Infrastructure/Bizbases/Action.cs -------------------------------------------------------------------------------- /CC.AutomatedTesting.Infrastructure/Bizbases/ActionDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas20029/AutomatedTesting/HEAD/CC.AutomatedTesting.Infrastructure/Bizbases/ActionDescription.cs -------------------------------------------------------------------------------- /CC.AutomatedTesting.Infrastructure/Bizbases/ActionMethodAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas20029/AutomatedTesting/HEAD/CC.AutomatedTesting.Infrastructure/Bizbases/ActionMethodAttribute.cs -------------------------------------------------------------------------------- /CC.AutomatedTesting.Infrastructure/Bizbases/AssertAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas20029/AutomatedTesting/HEAD/CC.AutomatedTesting.Infrastructure/Bizbases/AssertAction.cs -------------------------------------------------------------------------------- /CC.AutomatedTesting.Infrastructure/Bizbases/CommonActions/HtmlAssertAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas20029/AutomatedTesting/HEAD/CC.AutomatedTesting.Infrastructure/Bizbases/CommonActions/HtmlAssertAction.cs -------------------------------------------------------------------------------- /CC.AutomatedTesting.Infrastructure/Bizbases/CommonActions/HtmlPerfromAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas20029/AutomatedTesting/HEAD/CC.AutomatedTesting.Infrastructure/Bizbases/CommonActions/HtmlPerfromAction.cs -------------------------------------------------------------------------------- /CC.AutomatedTesting.Infrastructure/Bizbases/CommonActions/JsAssertAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas20029/AutomatedTesting/HEAD/CC.AutomatedTesting.Infrastructure/Bizbases/CommonActions/JsAssertAction.cs -------------------------------------------------------------------------------- /CC.AutomatedTesting.Infrastructure/Bizbases/CommonActions/JsPerfromAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas20029/AutomatedTesting/HEAD/CC.AutomatedTesting.Infrastructure/Bizbases/CommonActions/JsPerfromAction.cs -------------------------------------------------------------------------------- /CC.AutomatedTesting.Infrastructure/Bizbases/FuncAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas20029/AutomatedTesting/HEAD/CC.AutomatedTesting.Infrastructure/Bizbases/FuncAction.cs -------------------------------------------------------------------------------- /CC.AutomatedTesting.Infrastructure/Bizbases/FunctionAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas20029/AutomatedTesting/HEAD/CC.AutomatedTesting.Infrastructure/Bizbases/FunctionAction.cs -------------------------------------------------------------------------------- /CC.AutomatedTesting.Infrastructure/Bizbases/IAssert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas20029/AutomatedTesting/HEAD/CC.AutomatedTesting.Infrastructure/Bizbases/IAssert.cs -------------------------------------------------------------------------------- /CC.AutomatedTesting.Infrastructure/Bizbases/IPerform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas20029/AutomatedTesting/HEAD/CC.AutomatedTesting.Infrastructure/Bizbases/IPerform.cs -------------------------------------------------------------------------------- /CC.AutomatedTesting.Infrastructure/Bizbases/IPreconditionCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas20029/AutomatedTesting/HEAD/CC.AutomatedTesting.Infrastructure/Bizbases/IPreconditionCheck.cs -------------------------------------------------------------------------------- /CC.AutomatedTesting.Infrastructure/Bizbases/PerformAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas20029/AutomatedTesting/HEAD/CC.AutomatedTesting.Infrastructure/Bizbases/PerformAction.cs -------------------------------------------------------------------------------- /CC.AutomatedTesting.Infrastructure/Bizbases/VersionControlAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas20029/AutomatedTesting/HEAD/CC.AutomatedTesting.Infrastructure/Bizbases/VersionControlAttribute.cs -------------------------------------------------------------------------------- /CC.AutomatedTesting.Infrastructure/CC.AutomatedTesting.Infrastructure.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas20029/AutomatedTesting/HEAD/CC.AutomatedTesting.Infrastructure/CC.AutomatedTesting.Infrastructure.csproj -------------------------------------------------------------------------------- /CC.AutomatedTesting.Infrastructure/Common/DictionaryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas20029/AutomatedTesting/HEAD/CC.AutomatedTesting.Infrastructure/Common/DictionaryExtensions.cs -------------------------------------------------------------------------------- /CC.AutomatedTesting.Infrastructure/Common/RetryHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas20029/AutomatedTesting/HEAD/CC.AutomatedTesting.Infrastructure/Common/RetryHelper.cs -------------------------------------------------------------------------------- /CC.AutomatedTesting.Infrastructure/Common/ValueConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas20029/AutomatedTesting/HEAD/CC.AutomatedTesting.Infrastructure/Common/ValueConverter.cs -------------------------------------------------------------------------------- /CC.AutomatedTesting.Infrastructure/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas20029/AutomatedTesting/HEAD/CC.AutomatedTesting.Infrastructure/Constants.cs -------------------------------------------------------------------------------- /CC.AutomatedTesting.Infrastructure/ConstructingContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas20029/AutomatedTesting/HEAD/CC.AutomatedTesting.Infrastructure/ConstructingContext.cs -------------------------------------------------------------------------------- /CC.AutomatedTesting.Infrastructure/Exceptions/BizException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas20029/AutomatedTesting/HEAD/CC.AutomatedTesting.Infrastructure/Exceptions/BizException.cs -------------------------------------------------------------------------------- /CC.AutomatedTesting.Infrastructure/Extensions/StringEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas20029/AutomatedTesting/HEAD/CC.AutomatedTesting.Infrastructure/Extensions/StringEx.cs -------------------------------------------------------------------------------- /CC.AutomatedTesting.Infrastructure/Extensions/WebDriverEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas20029/AutomatedTesting/HEAD/CC.AutomatedTesting.Infrastructure/Extensions/WebDriverEx.cs -------------------------------------------------------------------------------- /CC.AutomatedTesting.Infrastructure/Extensions/WebDriverWaitEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas20029/AutomatedTesting/HEAD/CC.AutomatedTesting.Infrastructure/Extensions/WebDriverWaitEx.cs -------------------------------------------------------------------------------- /CC.AutomatedTesting.Infrastructure/Extensions/WebElementEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas20029/AutomatedTesting/HEAD/CC.AutomatedTesting.Infrastructure/Extensions/WebElementEx.cs -------------------------------------------------------------------------------- /CC.AutomatedTesting.Infrastructure/FunctionProcessor/FuncProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas20029/AutomatedTesting/HEAD/CC.AutomatedTesting.Infrastructure/FunctionProcessor/FuncProcessor.cs -------------------------------------------------------------------------------- /CC.AutomatedTesting.Infrastructure/Jquery/JQueryExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas20029/AutomatedTesting/HEAD/CC.AutomatedTesting.Infrastructure/Jquery/JQueryExecutor.cs -------------------------------------------------------------------------------- /CC.AutomatedTesting.Infrastructure/Log/Computer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas20029/AutomatedTesting/HEAD/CC.AutomatedTesting.Infrastructure/Log/Computer.cs -------------------------------------------------------------------------------- /CC.AutomatedTesting.Infrastructure/ParallelRun/TPLManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas20029/AutomatedTesting/HEAD/CC.AutomatedTesting.Infrastructure/ParallelRun/TPLManager.cs -------------------------------------------------------------------------------- /CC.AutomatedTesting.Infrastructure/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas20029/AutomatedTesting/HEAD/CC.AutomatedTesting.Infrastructure/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CC.AutomatedTesting.Infrastructure/TestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas20029/AutomatedTesting/HEAD/CC.AutomatedTesting.Infrastructure/TestCase.cs -------------------------------------------------------------------------------- /CC.AutomatedTesting.Infrastructure/TestCaseExecuter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas20029/AutomatedTesting/HEAD/CC.AutomatedTesting.Infrastructure/TestCaseExecuter.cs -------------------------------------------------------------------------------- /CC.AutomatedTesting.Infrastructure/TestCaseFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas20029/AutomatedTesting/HEAD/CC.AutomatedTesting.Infrastructure/TestCaseFactory.cs -------------------------------------------------------------------------------- /CC.AutomatedTesting.Infrastructure/TestSuite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas20029/AutomatedTesting/HEAD/CC.AutomatedTesting.Infrastructure/TestSuite.cs -------------------------------------------------------------------------------- /CC.AutomatedTesting.Infrastructure/TestSuiteFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas20029/AutomatedTesting/HEAD/CC.AutomatedTesting.Infrastructure/TestSuiteFactory.cs -------------------------------------------------------------------------------- /CC.AutomatedTesting.Infrastructure/TestSuiteRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas20029/AutomatedTesting/HEAD/CC.AutomatedTesting.Infrastructure/TestSuiteRunner.cs -------------------------------------------------------------------------------- /CC.AutomatedTesting.Infrastructure/TextAnalyzer/Analyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas20029/AutomatedTesting/HEAD/CC.AutomatedTesting.Infrastructure/TextAnalyzer/Analyzer.cs -------------------------------------------------------------------------------- /CC.AutomatedTesting.Infrastructure/TextAnalyzer/Escaper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas20029/AutomatedTesting/HEAD/CC.AutomatedTesting.Infrastructure/TextAnalyzer/Escaper.cs -------------------------------------------------------------------------------- /CC.AutomatedTesting.Infrastructure/WebDriverFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas20029/AutomatedTesting/HEAD/CC.AutomatedTesting.Infrastructure/WebDriverFactory.cs -------------------------------------------------------------------------------- /CC.AutomatedTesting.Infrastructure/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas20029/AutomatedTesting/HEAD/CC.AutomatedTesting.Infrastructure/app.config -------------------------------------------------------------------------------- /CC.AutomatedTesting.Infrastructure/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas20029/AutomatedTesting/HEAD/CC.AutomatedTesting.Infrastructure/packages.config -------------------------------------------------------------------------------- /CC.AutomatedTesting.Reporting/CC.AutomatedTesting.Reporting.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas20029/AutomatedTesting/HEAD/CC.AutomatedTesting.Reporting/CC.AutomatedTesting.Reporting.csproj -------------------------------------------------------------------------------- /CC.AutomatedTesting.Reporting/ExtentReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas20029/AutomatedTesting/HEAD/CC.AutomatedTesting.Reporting/ExtentReport.cs -------------------------------------------------------------------------------- /CC.AutomatedTesting.Reporting/IReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas20029/AutomatedTesting/HEAD/CC.AutomatedTesting.Reporting/IReport.cs -------------------------------------------------------------------------------- /CC.AutomatedTesting.Reporting/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas20029/AutomatedTesting/HEAD/CC.AutomatedTesting.Reporting/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CC.AutomatedTesting.Reporting/ReportFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas20029/AutomatedTesting/HEAD/CC.AutomatedTesting.Reporting/ReportFactory.cs -------------------------------------------------------------------------------- /CC.AutomatedTesting.Reporting/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas20029/AutomatedTesting/HEAD/CC.AutomatedTesting.Reporting/packages.config -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas20029/AutomatedTesting/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucas20029/AutomatedTesting/HEAD/README.md --------------------------------------------------------------------------------