2016-01-20 15:19:04 -08:00
|
|
|
// 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 Contains several classes for handling commands.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Describes a command to execute.
|
|
|
|
|
* @final
|
|
|
|
|
*/
|
|
|
|
|
class Command {
|
|
|
|
|
/** @param {string} name The name of this command. */
|
|
|
|
|
constructor(name) {
|
|
|
|
|
/** @private {string} */
|
|
|
|
|
this.name_ = name;
|
|
|
|
|
|
|
|
|
|
/** @private {!Object<*>} */
|
|
|
|
|
this.parameters_ = {};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** @return {string} This command's name. */
|
|
|
|
|
getName() {
|
|
|
|
|
return this.name_;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Sets a parameter to send with this command.
|
|
|
|
|
* @param {string} name The parameter name.
|
|
|
|
|
* @param {*} value The parameter value.
|
|
|
|
|
* @return {!Command} A self reference.
|
|
|
|
|
*/
|
|
|
|
|
setParameter(name, value) {
|
|
|
|
|
this.parameters_[name] = value;
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Sets the parameters for this command.
|
|
|
|
|
* @param {!Object<*>} parameters The command parameters.
|
|
|
|
|
* @return {!Command} A self reference.
|
|
|
|
|
*/
|
|
|
|
|
setParameters(parameters) {
|
|
|
|
|
this.parameters_ = parameters;
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Returns a named command parameter.
|
|
|
|
|
* @param {string} key The parameter key to look up.
|
|
|
|
|
* @return {*} The parameter value, or undefined if it has not been set.
|
|
|
|
|
*/
|
|
|
|
|
getParameter(key) {
|
|
|
|
|
return this.parameters_[key];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @return {!Object<*>} The parameters to send with this command.
|
|
|
|
|
*/
|
|
|
|
|
getParameters() {
|
|
|
|
|
return this.parameters_;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Enumeration of predefined names command names that all command processors
|
|
|
|
|
* will support.
|
|
|
|
|
* @enum {string}
|
|
|
|
|
*/
|
|
|
|
|
// TODO: Delete obsolete command names.
|
|
|
|
|
const Name = {
|
|
|
|
|
GET_SERVER_STATUS: 'getStatus',
|
|
|
|
|
|
|
|
|
|
NEW_SESSION: 'newSession',
|
|
|
|
|
GET_SESSIONS: 'getSessions',
|
|
|
|
|
|
|
|
|
|
CLOSE: 'close',
|
|
|
|
|
QUIT: 'quit',
|
|
|
|
|
|
|
|
|
|
GET_CURRENT_URL: 'getCurrentUrl',
|
|
|
|
|
GET: 'get',
|
|
|
|
|
GO_BACK: 'goBack',
|
|
|
|
|
GO_FORWARD: 'goForward',
|
|
|
|
|
REFRESH: 'refresh',
|
|
|
|
|
|
|
|
|
|
ADD_COOKIE: 'addCookie',
|
|
|
|
|
GET_COOKIE: 'getCookie',
|
|
|
|
|
GET_ALL_COOKIES: 'getCookies',
|
|
|
|
|
DELETE_COOKIE: 'deleteCookie',
|
|
|
|
|
DELETE_ALL_COOKIES: 'deleteAllCookies',
|
|
|
|
|
|
|
|
|
|
GET_ACTIVE_ELEMENT: 'getActiveElement',
|
|
|
|
|
FIND_ELEMENT: 'findElement',
|
|
|
|
|
FIND_ELEMENTS: 'findElements',
|
2020-04-25 09:10:55 +01:00
|
|
|
FIND_ELEMENTS_RELATIVE: "findElementsRelative",
|
2016-01-20 15:19:04 -08:00
|
|
|
FIND_CHILD_ELEMENT: 'findChildElement',
|
|
|
|
|
FIND_CHILD_ELEMENTS: 'findChildElements',
|
|
|
|
|
|
|
|
|
|
CLEAR_ELEMENT: 'clearElement',
|
|
|
|
|
CLICK_ELEMENT: 'clickElement',
|
|
|
|
|
SEND_KEYS_TO_ELEMENT: 'sendKeysToElement',
|
|
|
|
|
SUBMIT_ELEMENT: 'submitElement',
|
|
|
|
|
|
|
|
|
|
GET_CURRENT_WINDOW_HANDLE: 'getCurrentWindowHandle',
|
|
|
|
|
GET_WINDOW_HANDLES: 'getWindowHandles',
|
|
|
|
|
GET_WINDOW_POSITION: 'getWindowPosition',
|
|
|
|
|
SET_WINDOW_POSITION: 'setWindowPosition',
|
|
|
|
|
GET_WINDOW_SIZE: 'getWindowSize',
|
|
|
|
|
SET_WINDOW_SIZE: 'setWindowSize',
|
2017-10-14 19:47:12 -07:00
|
|
|
GET_WINDOW_RECT: 'getWindowRect',
|
|
|
|
|
SET_WINDOW_RECT: 'setWindowRect',
|
2016-01-20 15:19:04 -08:00
|
|
|
MAXIMIZE_WINDOW: 'maximizeWindow',
|
2017-10-08 21:14:28 -07:00
|
|
|
MINIMIZE_WINDOW: 'minimizeWindow',
|
|
|
|
|
FULLSCREEN_WINDOW: 'fullscreenWindow',
|
2016-01-20 15:19:04 -08:00
|
|
|
|
|
|
|
|
SWITCH_TO_WINDOW: 'switchToWindow',
|
2019-02-20 17:01:52 +02:00
|
|
|
SWITCH_TO_NEW_WINDOW: 'newWindow',
|
2016-01-20 15:19:04 -08:00
|
|
|
SWITCH_TO_FRAME: 'switchToFrame',
|
2017-12-27 15:12:04 -08:00
|
|
|
SWITCH_TO_FRAME_PARENT: 'switchToFrameParent',
|
2016-01-20 15:19:04 -08:00
|
|
|
GET_PAGE_SOURCE: 'getPageSource',
|
|
|
|
|
GET_TITLE: 'getTitle',
|
|
|
|
|
|
|
|
|
|
EXECUTE_SCRIPT: 'executeScript',
|
|
|
|
|
EXECUTE_ASYNC_SCRIPT: 'executeAsyncScript',
|
|
|
|
|
|
|
|
|
|
GET_ELEMENT_TEXT: 'getElementText',
|
|
|
|
|
GET_ELEMENT_TAG_NAME: 'getElementTagName',
|
|
|
|
|
IS_ELEMENT_SELECTED: 'isElementSelected',
|
|
|
|
|
IS_ELEMENT_ENABLED: 'isElementEnabled',
|
|
|
|
|
IS_ELEMENT_DISPLAYED: 'isElementDisplayed',
|
|
|
|
|
GET_ELEMENT_LOCATION: 'getElementLocation',
|
|
|
|
|
GET_ELEMENT_LOCATION_IN_VIEW: 'getElementLocationOnceScrolledIntoView',
|
2018-01-07 18:55:16 -08:00
|
|
|
GET_ELEMENT_RECT: 'getElementRect',
|
2016-01-20 15:19:04 -08:00
|
|
|
GET_ELEMENT_SIZE: 'getElementSize',
|
|
|
|
|
GET_ELEMENT_ATTRIBUTE: 'getElementAttribute',
|
|
|
|
|
GET_ELEMENT_VALUE_OF_CSS_PROPERTY: 'getElementValueOfCssProperty',
|
2019-12-04 00:11:19 +05:30
|
|
|
GET_ELEMENT_PROPERTY: 'getElementProperty',
|
2016-01-20 15:19:04 -08:00
|
|
|
|
|
|
|
|
SCREENSHOT: 'screenshot',
|
|
|
|
|
TAKE_ELEMENT_SCREENSHOT: 'takeElementScreenshot',
|
|
|
|
|
SET_SCRIPT_TIMEOUT: 'setScriptTimeout',
|
2017-03-08 19:54:54 -08:00
|
|
|
|
|
|
|
|
GET_TIMEOUT: 'getTimeout',
|
2016-01-20 15:19:04 -08:00
|
|
|
SET_TIMEOUT: 'setTimeout',
|
|
|
|
|
|
|
|
|
|
ACCEPT_ALERT: 'acceptAlert',
|
|
|
|
|
DISMISS_ALERT: 'dismissAlert',
|
|
|
|
|
GET_ALERT_TEXT: 'getAlertText',
|
|
|
|
|
SET_ALERT_TEXT: 'setAlertValue',
|
|
|
|
|
|
|
|
|
|
GET_AVAILABLE_LOG_TYPES: 'getAvailableLogTypes',
|
|
|
|
|
GET_LOG: 'getLog',
|
|
|
|
|
GET_SESSION_LOGS: 'getSessionLogs',
|
|
|
|
|
|
|
|
|
|
// Non-standard commands used by the standalone Selenium server.
|
2017-10-08 20:05:35 -07:00
|
|
|
UPLOAD_FILE: 'uploadFile',
|
2017-10-08 20:26:39 -07:00
|
|
|
|
2017-10-08 20:05:35 -07:00
|
|
|
ACTIONS: 'actions',
|
|
|
|
|
CLEAR_ACTIONS: 'clearActions',
|
2017-12-20 20:31:14 -08:00
|
|
|
|
2017-12-27 11:56:08 -08:00
|
|
|
LEGACY_ACTION_CLICK: 'legacyAction:click',
|
|
|
|
|
LEGACY_ACTION_DOUBLE_CLICK: 'legacyAction:doubleclick',
|
2017-12-20 20:31:14 -08:00
|
|
|
LEGACY_ACTION_MOUSE_DOWN: 'legacyAction:mouseDown',
|
|
|
|
|
LEGACY_ACTION_MOUSE_UP: 'legacyAction:mouseUp',
|
|
|
|
|
LEGACY_ACTION_MOUSE_MOVE: 'legacyAction:mouseMove',
|
|
|
|
|
LEGACY_ACTION_SEND_KEYS: 'legacyAction:sendKeys',
|
2017-12-27 11:56:08 -08:00
|
|
|
LEGACY_ACTION_TOUCH_DOWN: 'legacyAction:touchDown',
|
|
|
|
|
LEGACY_ACTION_TOUCH_UP: 'legacyAction:touchUp',
|
|
|
|
|
LEGACY_ACTION_TOUCH_MOVE: 'legacyAction:touchMove',
|
|
|
|
|
LEGACY_ACTION_TOUCH_SCROLL: 'legacyAction:touchScroll',
|
|
|
|
|
LEGACY_ACTION_TOUCH_LONG_PRESS: 'legacyAction:touchLongPress',
|
|
|
|
|
LEGACY_ACTION_TOUCH_FLICK: 'legacyAction:touchFlick',
|
|
|
|
|
LEGACY_ACTION_TOUCH_SINGLE_TAP: 'legacyAction:singleTap',
|
|
|
|
|
LEGACY_ACTION_TOUCH_DOUBLE_TAP: 'legacyAction:doubleTap',
|
2016-01-20 15:19:04 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Handles the execution of WebDriver {@link Command commands}.
|
2017-12-20 22:07:25 -08:00
|
|
|
* @record
|
2016-01-20 15:19:04 -08:00
|
|
|
*/
|
|
|
|
|
class Executor {
|
|
|
|
|
/**
|
|
|
|
|
* Executes the given {@code command}. If there is an error executing the
|
|
|
|
|
* command, the provided callback will be invoked with the offending error.
|
|
|
|
|
* Otherwise, the callback will be invoked with a null Error and non-null
|
|
|
|
|
* response object.
|
|
|
|
|
*
|
|
|
|
|
* @param {!Command} command The command to execute.
|
2016-06-08 08:26:34 -07:00
|
|
|
* @return {!Promise<?>} A promise that will be fulfilled with the command
|
|
|
|
|
* result.
|
2016-01-20 15:19:04 -08:00
|
|
|
*/
|
2016-02-08 21:43:09 -08:00
|
|
|
execute(command) {}
|
2016-01-20 15:19:04 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2016-01-20 16:59:35 -08:00
|
|
|
|
2016-01-20 15:19:04 -08:00
|
|
|
// PUBLIC API
|
|
|
|
|
|
|
|
|
|
|
2016-03-12 11:49:57 -08:00
|
|
|
module.exports = {
|
|
|
|
|
Command: Command,
|
|
|
|
|
Name: Name,
|
2016-08-06 08:37:25 -07:00
|
|
|
Executor: Executor
|
2016-03-12 11:49:57 -08:00
|
|
|
};
|