public static void StartDriver(DriverType driverType)
 {
     Drivers.StartDrivers(driverType);
 }
 public static void StartDriver(DriverType driverType, int pageLoadTimeout = 60, bool isMaximazie = false)
 {
     Drivers.StartDrivers(driverType, pageLoadTimeout: pageLoadTimeout, isMaximize: isMaximazie);
 }
 public static void StartDriver(DriverType driverType, bool isMaximazie = false)
 {
     Drivers.StartDrivers(driverType, isMaximize: isMaximazie);
 }
 public static void StartDriver(DriverType driverType, int pageLoadTimeout = 60)
 {
     Drivers.StartDrivers(driverType, pageLoadTimeout: pageLoadTimeout);
 }
 /// <summary>
 /// This method use for
 /// close driver
 /// </summary>
 public static void CloseDriver()
 {
     Drivers.CloseDrivers();
 }