Added ScriptManager to execute scripts
This commit is contained in:
parent
22d7294cd9
commit
5adaa52b59
5 changed files with 1079 additions and 0 deletions
1019
.vs/config/applicationhost.config
Normal file
1019
.vs/config/applicationhost.config
Normal file
File diff suppressed because it is too large
Load diff
|
@ -68,11 +68,16 @@
|
|||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
<Compile Include="Responses\LoginResponse.cs" />
|
||||
<Compile Include="Responses\Response.cs" />
|
||||
<Compile Include="ScriptManagement\ScriptManager.cs" />
|
||||
<Compile Include="ScriptManagement\Scripts.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="packages.config" />
|
||||
</ItemGroup>
|
||||
<ItemGroup />
|
||||
<ItemGroup>
|
||||
<Content Include="ScriptManagement\Scripts\test.js" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
||||
Other similar extension points exist, see Microsoft.Common.targets.
|
||||
|
|
40
BankingBot/ScriptManagement/ScriptManager.cs
Normal file
40
BankingBot/ScriptManagement/ScriptManager.cs
Normal file
|
@ -0,0 +1,40 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using BankingBot.Contracts;
|
||||
using OpenQA.Selenium;
|
||||
using OpenQA.Selenium.Internal;
|
||||
|
||||
namespace BankingBot.ScriptManagement
|
||||
{
|
||||
public class ScriptManager
|
||||
{
|
||||
private readonly IBrowserBot _browserBot;
|
||||
|
||||
public ScriptManager(IBrowserBot browserBot)
|
||||
{
|
||||
_browserBot = browserBot;
|
||||
}
|
||||
|
||||
public T Execute<T>(string scriptPath, Dictionary<string, string> data = null)
|
||||
{
|
||||
var scriptContent = File.ReadAllText(scriptPath);
|
||||
|
||||
if (data != null)
|
||||
{
|
||||
var placeholderFormat = "__${0}";
|
||||
foreach (var pair in data)
|
||||
{
|
||||
var placeholderText = string.Format(placeholderFormat, pair.Key);
|
||||
scriptContent = scriptContent.Replace(placeholderText, pair.Value);
|
||||
}
|
||||
}
|
||||
|
||||
var executor = _browserBot.WebDriver as IJavaScriptExecutor;
|
||||
return (T)executor.ExecuteScript(scriptContent);
|
||||
}
|
||||
}
|
||||
}
|
12
BankingBot/ScriptManagement/Scripts.cs
Normal file
12
BankingBot/ScriptManagement/Scripts.cs
Normal file
|
@ -0,0 +1,12 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace BankingBot.ScriptManagement
|
||||
{
|
||||
public static class Scripts
|
||||
{
|
||||
}
|
||||
}
|
3
BankingBot/ScriptManagement/Scripts/test.js
Normal file
3
BankingBot/ScriptManagement/Scripts/test.js
Normal file
|
@ -0,0 +1,3 @@
|
|||
(function () {
|
||||
var test = (/*{test}*/);
|
||||
})();
|
Loading…
Add table
Reference in a new issue