Exemplo n.º 1
0
        /// <summary>
        /// Specifies the driver options.
        /// </summary>
        /// <param name="options">The driver options.</param>
        /// <returns>The same builder instance.</returns>
        public RemoteDriverAtataContextBuilder WithOptions(DriverOptions options)
        {
            options.CheckNotNull(nameof(options));

            optionsFactory = () => options;
            return(this);
        }