Version: 2.29.02.29.12.30.02.31.02.32.02.32.12.33.02.34.02.34.12.35.02.35.12.35.22.37.02.38.02.38.12.39.02.40.02.41.02.42.02.42.12.43.12.43.22.43.32.43.42.43.52.44.02.45.02.45.12.46.02.46.12.47.02.48.02.48.12.48.22.52.02.53.12.53.22.53.33.0.0-beta-13.0.0-beta-23.0.0-beta-33.0.03.0.13.1.03.3.03.4.03.5.03.6.04.0.0-alpha.14.0.0-alpha.34.0.0-alpha.44.0.0-alpha.54.0.0-alpha.64.0.0-alpha.74.0.0-alpha.84.0.0-beta.14.0.0-beta.24.0.0-beta.34.0.0-beta.44.0.0-rc-14.0.0-rc-24.0.04.1.04.1.14.1.24.2.04.3.04.3.14.4.04.5.04.6.04.6.14.7.04.7.14.8.04.8.14.8.24.9.04.9.14.9.24.10.04.11.04.11.14.12.04.13.04.14.04.15.04.16.04.17.04.18.04.18.14.19.04.20.04.21.04.22.04.23.04.24.04.24.14.25.04.26.0
// Licensed to the Software Freedom Conservancy (SFC) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The SFC licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
/**
* @fileoverview Proxy module alias.
*
* var webdriver = require('selenium-webdriver'),
* proxy = require('selenium-webdriver/proxy');
* var driver = new webdriver.Builder()
* .withCapabilities(webdriver.Capabilities.chrome())
* .setProxy(proxy.manual({http: 'host:1234'}))
* .build();
*/
'use strict';
module.exports = require('./lib/proxy');