forked from annv/MinigameTest
minigame
This commit is contained in:
211
node_modules/selenium-webdriver/edge.js
generated
vendored
Normal file
211
node_modules/selenium-webdriver/edge.js
generated
vendored
Normal file
@@ -0,0 +1,211 @@
|
||||
// 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 Defines a {@linkplain Driver WebDriver} client for
|
||||
* Microsoft's Edge web browser. Edge (Chromium) is supported and support
|
||||
* for Edge Legacy (EdgeHTML) as part of https://github.com/SeleniumHQ/selenium/issues/9166.
|
||||
* Before using this module, you must download and install the correct
|
||||
* [WebDriver](https://developer.microsoft.com/en-us/microsoft-edge/tools/webdriver/) server.
|
||||
*
|
||||
* Ensure that the msedgedriver (Chromium)
|
||||
* is on your [PATH](http://en.wikipedia.org/wiki/PATH_%28variable%29).
|
||||
*
|
||||
* You may use {@link Options} to specify whether Edge Chromium options should be used:
|
||||
|
||||
* const edge = require('selenium-webdriver/edge');
|
||||
* const options = new edge.Options();
|
||||
|
||||
* There are three primary classes exported by this module:
|
||||
*
|
||||
* 1. {@linkplain ServiceBuilder}: configures the
|
||||
* {@link ./remote.DriverService remote.DriverService}
|
||||
* that manages the [WebDriver] child process.
|
||||
*
|
||||
* 2. {@linkplain Options}: defines configuration options for each new
|
||||
* WebDriver session, such as which
|
||||
* {@linkplain Options#setProxy proxy} to use when starting the browser.
|
||||
*
|
||||
* 3. {@linkplain Driver}: the WebDriver client; each new instance will control
|
||||
* a unique browser session.
|
||||
*
|
||||
* __Customizing the WebDriver Server__ <a id="custom-server"></a>
|
||||
*
|
||||
* By default, every MicrosoftEdge session will use a single driver service,
|
||||
* which is started the first time a {@link Driver} instance is created and
|
||||
* terminated when this process exits. The default service will inherit its
|
||||
* environment from the current process.
|
||||
* You may obtain a handle to this default service using
|
||||
* {@link #getDefaultService getDefaultService()} and change its configuration
|
||||
* with {@link #setDefaultService setDefaultService()}.
|
||||
*
|
||||
* You may also create a {@link Driver} with its own driver service. This is
|
||||
* useful if you need to capture the server's log output for a specific session:
|
||||
*
|
||||
* const edge = require('selenium-webdriver/edge');
|
||||
*
|
||||
* const service = new edge.ServiceBuilder()
|
||||
* .setPort(55555)
|
||||
* .build();
|
||||
*
|
||||
* let options = new edge.Options();
|
||||
* // configure browser options ...
|
||||
*
|
||||
* let driver = edge.Driver.createSession(options, service);
|
||||
*
|
||||
* Users should only instantiate the {@link Driver} class directly when they
|
||||
* need a custom driver service configuration (as shown above). For normal
|
||||
* operation, users should start msedgedriver using the
|
||||
* {@link ./builder.Builder selenium-webdriver.Builder}.
|
||||
*
|
||||
* [WebDriver (Chromium)]: https://docs.microsoft.com/en-us/microsoft-edge/webdriver-chromium
|
||||
*/
|
||||
|
||||
'use strict'
|
||||
|
||||
const { Browser } = require('./lib/capabilities')
|
||||
const io = require('./io')
|
||||
const chromium = require('./chromium')
|
||||
const { driverLocation } = require('./common/seleniumManager')
|
||||
|
||||
/**
|
||||
* Name of the EdgeDriver executable.
|
||||
* @type {string}
|
||||
* @const
|
||||
*/
|
||||
const EDGEDRIVER_CHROMIUM_EXE =
|
||||
process.platform === 'win32' ? 'msedgedriver.exe' : 'msedgedriver'
|
||||
|
||||
/** @type {remote.DriverService} */
|
||||
|
||||
/**
|
||||
* Creates {@link selenium-webdriver/remote.DriverService} instances that manage
|
||||
* a [MSEdgeDriver](https://developer.microsoft.com/en-us/microsoft-edge/tools/webdriver/)
|
||||
* server in a child process.
|
||||
*/
|
||||
class ServiceBuilder extends chromium.ServiceBuilder {
|
||||
/**
|
||||
* @param {string=} opt_exe Path to the server executable to use. If omitted,
|
||||
* the builder will attempt to locate the msedgedriver on the current
|
||||
* PATH.
|
||||
* @throws {Error} If provided executable does not exist, or the msedgedriver
|
||||
* cannot be found on the PATH.
|
||||
*/
|
||||
constructor(opt_exe) {
|
||||
let exe = opt_exe || locateSynchronously()
|
||||
|
||||
if (!exe) {
|
||||
console.log(
|
||||
`The WebDriver for Edge could not be found on the current PATH, trying Selenium Manager`
|
||||
)
|
||||
|
||||
try {
|
||||
exe = driverLocation('edge')
|
||||
} catch (err) {
|
||||
console.log(`Unable to obtain driver using Selenium Manager: ${err}`)
|
||||
}
|
||||
}
|
||||
|
||||
if (!exe) {
|
||||
throw Error(
|
||||
`The WebDriver for Edge could not be found on the current PATH. Please download the ` +
|
||||
`latest version of ${EDGEDRIVER_CHROMIUM_EXE} from ` +
|
||||
`https://developer.microsoft.com/en-us/microsoft-edge/tools/webdriver/ ` +
|
||||
`and ensure it can be found on your PATH.`
|
||||
)
|
||||
}
|
||||
|
||||
super(exe)
|
||||
this.setLoopback(true)
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Class for managing edge chromium specific options.
|
||||
*/
|
||||
class Options extends chromium.Options {
|
||||
/**
|
||||
* Sets the path to the edge binary to use
|
||||
*
|
||||
* The binary path be absolute or relative to the msedgedriver server
|
||||
* executable, but it must exist on the machine that will launch edge chromium.
|
||||
*
|
||||
* @param {string} path The path to the msedgedriver binary to use.
|
||||
* @return {!Options} A self reference.
|
||||
*/
|
||||
setEdgeChromiumBinaryPath(path) {
|
||||
return this.setBinaryPath(path)
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Creates a new WebDriver client for Microsoft's Edge.
|
||||
*/
|
||||
class Driver extends chromium.Driver {
|
||||
/**
|
||||
* Creates a new browser session for Microsoft's Edge browser.
|
||||
*
|
||||
* @param {(Capabilities|Options)=} opt_config The configuration options.
|
||||
* @param {remote.DriverService=} opt_serviceExecutor The service to use; will create
|
||||
* a new Legacy or Chromium service based on {@linkplain Options} by default.
|
||||
* @return {!Driver} A new driver instance.
|
||||
*/
|
||||
static createSession(opt_config, opt_serviceExecutor) {
|
||||
let caps = opt_config || new Options()
|
||||
return /** @type {!Driver} */ (
|
||||
super.createSession(caps, opt_serviceExecutor)
|
||||
)
|
||||
}
|
||||
|
||||
/**
|
||||
* returns new instance of edge driver service
|
||||
* @returns {remote.DriverService}
|
||||
*/
|
||||
static getDefaultService() {
|
||||
return new ServiceBuilder().build()
|
||||
}
|
||||
|
||||
/**
|
||||
* This function is a no-op as file detectors are not supported by this
|
||||
* implementation.
|
||||
* @override
|
||||
*/
|
||||
setFileDetector() {}
|
||||
}
|
||||
|
||||
/**
|
||||
* _Synchronously_ attempts to locate the chromedriver executable on the current
|
||||
* system.
|
||||
*
|
||||
* @return {?string} the located executable, or `null`.
|
||||
*/
|
||||
function locateSynchronously() {
|
||||
return io.findInPath(EDGEDRIVER_CHROMIUM_EXE, true)
|
||||
}
|
||||
|
||||
Options.prototype.BROWSER_NAME_VALUE = Browser.EDGE
|
||||
Options.prototype.CAPABILITY_KEY = 'ms:edgeOptions'
|
||||
Driver.prototype.VENDOR_CAPABILITY_PREFIX = 'ms'
|
||||
|
||||
// PUBLIC API
|
||||
|
||||
module.exports = {
|
||||
Driver,
|
||||
Options,
|
||||
ServiceBuilder,
|
||||
locateSynchronously,
|
||||
}
|
||||
Reference in New Issue
Block a user