public ChromeDriverExt(string path, ChromeOptions options, TimeSpan commandTimeout, WaitProfile waitProfile)
     : base(path, options, commandTimeout)
 {
     this.WaitProfile = waitProfile;
 }
 public InternetExplorerDriverExt(string path, InternetExplorerOptions options, WaitProfile waitProfile)
     : this(path, options)
 {
     WaitProfile = waitProfile;
 }
 public FirefoxDriverExt(FirefoxProfile profile) : base(profile)
 {
     profile.SetPreference("profile", "default");
     this.WaitProfile = new WaitProfile(TimeSpan.FromSeconds(20), TimeSpan.FromMilliseconds(200));
 }