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