Beispiel #1
0
        public WebDriverAdapter(DriverOptions options)
        {
            var config = ConvertDriverOptionsToOperaDriverConfig(options);

            this.asyncOperaDriver = new Opera.AsyncOperaDriver(config);
            Create(asyncOperaDriver);
        }
 public OperaDriver(Zu.Opera.AsyncOperaDriver asyncOperaDriver)
     : base(asyncOperaDriver)
 {
 }
Beispiel #3
0
 public WebDriverAdapter(Zu.Opera.AsyncOperaDriver asyncOperaDriver)
 {
     this.asyncOperaDriver = asyncOperaDriver;
     Create(asyncOperaDriver);
 }
Beispiel #4
0
 public WebDriverAdapter(WebBrowser.BasicTypes.DriverConfig config)
 {
     this.asyncOperaDriver = new Opera.AsyncOperaDriver(config);
     Create(asyncOperaDriver);
 }
Beispiel #5
0
 public WebDriverAdapter(string profileName)
 {
     asyncOperaDriver = string.IsNullOrWhiteSpace(profileName) ? new Zu.Opera.AsyncOperaDriver() : new Zu.Opera.AsyncOperaDriver(profileName);
     Create(asyncOperaDriver);
 }