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(string scriptPath, Dictionary 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); } } }