public WebTestMethodManager(ILoggingUtility loggingUtility, TestContext testContext, IConfiguration appConfiguration, IFactory <IDriverCleanup> driverCleanup, IWebDriverService webDriverService) : base(testContext, appConfiguration, loggingUtility)
 {
     WebDriverService = webDriverService;
     LoggingUtility   = loggingUtility;
     DriverCleanup    = driverCleanup;
 }
 public MonitorEmployerLogin(ILogger log, IConfiguration configuration, IWebDriverService webDriverService)
 {
     _log              = log;
     _configuration    = configuration;
     _webDriverService = webDriverService;
 }
        /// <summary>
        /// Initializes a new instance of the <see cref="BaseWebDriverTest"/> class.
        /// </summary>
        public BaseWebDriverTest()
        {
            IWebDriverFactory webDriverFactory = new WebDriverFactory();

            this.webDriverService = new WebDriverService(webDriverFactory);
        }