2015-03-17 17:27:20 +03:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
"use strict";
|
|
|
|
|
2016-01-29 15:57:46 +03:00
|
|
|
const {interfaces: Ci, utils: Cu} = Components;
|
2015-03-17 17:27:20 +03:00
|
|
|
|
2016-07-08 16:00:56 +03:00
|
|
|
const ERRORS = new Set([
|
2015-04-15 14:18:00 +03:00
|
|
|
"ElementNotAccessibleError",
|
2015-03-17 17:27:20 +03:00
|
|
|
"ElementNotVisibleError",
|
2016-11-06 21:00:18 +03:00
|
|
|
"InsecureCertificateError",
|
2015-04-17 20:43:05 +03:00
|
|
|
"InvalidArgumentError",
|
2015-03-31 20:00:32 +03:00
|
|
|
"InvalidElementStateError",
|
2015-04-15 14:18:00 +03:00
|
|
|
"InvalidSelectorError",
|
2017-02-10 21:36:52 +03:00
|
|
|
"InvalidSessionIDError",
|
2015-03-17 17:27:20 +03:00
|
|
|
"JavaScriptError",
|
|
|
|
"NoAlertOpenError",
|
|
|
|
"NoSuchElementError",
|
|
|
|
"NoSuchFrameError",
|
|
|
|
"NoSuchWindowError",
|
|
|
|
"ScriptTimeoutError",
|
|
|
|
"SessionNotCreatedError",
|
2015-04-15 14:18:00 +03:00
|
|
|
"StaleElementReferenceError",
|
2015-03-17 17:27:20 +03:00
|
|
|
"TimeoutError",
|
2015-04-20 15:53:51 +03:00
|
|
|
"UnableToSetCookieError",
|
2015-03-17 17:27:20 +03:00
|
|
|
"UnknownCommandError",
|
|
|
|
"UnknownError",
|
|
|
|
"UnsupportedOperationError",
|
|
|
|
"WebDriverError",
|
2016-07-08 16:00:56 +03:00
|
|
|
]);
|
2015-03-17 17:27:20 +03:00
|
|
|
|
2016-07-08 15:58:04 +03:00
|
|
|
const BUILTIN_ERRORS = new Set([
|
|
|
|
"Error",
|
|
|
|
"EvalError",
|
|
|
|
"InternalError",
|
|
|
|
"RangeError",
|
|
|
|
"ReferenceError",
|
|
|
|
"SyntaxError",
|
|
|
|
"TypeError",
|
|
|
|
"URIError",
|
|
|
|
]);
|
|
|
|
|
2016-07-08 16:00:56 +03:00
|
|
|
this.EXPORTED_SYMBOLS = ["error"].concat(Array.from(ERRORS));
|
2015-03-17 17:27:20 +03:00
|
|
|
|
|
|
|
this.error = {};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks if obj is an instance of the Error prototype in a safe manner.
|
|
|
|
* Prefer using this over using instanceof since the Error prototype
|
2016-01-07 17:37:06 +03:00
|
|
|
* isn't unique across browsers, and XPCOM nsIException's are special
|
2015-03-17 17:27:20 +03:00
|
|
|
* snowflakes.
|
2015-04-15 14:18:00 +03:00
|
|
|
*
|
|
|
|
* @param {*} val
|
|
|
|
* Any value that should be undergo the test for errorness.
|
|
|
|
* @return {boolean}
|
|
|
|
* True if error, false otherwise.
|
2015-03-17 17:27:20 +03:00
|
|
|
*/
|
2016-12-04 14:42:52 +03:00
|
|
|
error.isError = function (val) {
|
2015-04-15 14:18:00 +03:00
|
|
|
if (val === null || typeof val != "object") {
|
2015-03-17 17:27:20 +03:00
|
|
|
return false;
|
2016-01-07 17:37:06 +03:00
|
|
|
} else if (val instanceof Ci.nsIException) {
|
2015-03-17 17:27:20 +03:00
|
|
|
return true;
|
|
|
|
} else {
|
2016-07-08 15:58:04 +03:00
|
|
|
// DOMRectList errors on string comparison
|
|
|
|
try {
|
|
|
|
let proto = Object.getPrototypeOf(val);
|
|
|
|
return BUILTIN_ERRORS.has(proto.toString());
|
|
|
|
} catch (e) {
|
|
|
|
return false;
|
|
|
|
}
|
2015-03-17 17:27:20 +03:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks if obj is an object in the WebDriverError prototypal chain.
|
|
|
|
*/
|
2016-12-04 14:42:52 +03:00
|
|
|
error.isWebDriverError = function (obj) {
|
2015-03-17 17:27:20 +03:00
|
|
|
return error.isError(obj) &&
|
2016-07-08 16:00:56 +03:00
|
|
|
("name" in obj && ERRORS.has(obj.name));
|
2016-02-03 21:43:37 +03:00
|
|
|
};
|
|
|
|
|
Bug 1123506 - Evaluate scripts in content with lasting side-effects; r=automatedtester
In order to achieve WebDriver parity, Marionette needs the ability to
evaluate scripts in content space with lasting side-effects. This means
that state modifications should affect behaviour and state of the browsing
context, and such transgress the boundaries of the sandbox.
This patch brings a new script evaluation module that is shared between
code in chrome- and content space. This brings the number of unique
script evaluation implementations in Marionette down from six to one.
evaluate.sandbox provides the main entry-point for execution. It is
compatible with existing Marionette uses of Execute Script and Execute
Async Script commands in Mozilla clients, but also provides a new stateful
sandbox for evaluation that should have lasting side-effects.
It is not expected that Mozilla clients, such as testing/marionette/client
and the Node.js client in Gaia, should have to change as a consequence
of this change.
A substantial change to the script's runtime environment is that many
globals that previously existed are now only exposed whenever needed.
This means for example that Simple Test harness functionality (waitFor,
ok, isnot, is, &c.) is only available when using a sandbox augmented
with a Simple Test harness adapter.
Conversely, this patch does not expose marionetteScriptFinished as a
callback to asynchronous scripts for sandboxes which sandboxName parameter
is undefined, because this is what determines if the script should be
evaluated under WebDriver conformance constraints. In all other cases
where sandboxName _is_ defined, the traditional marionetteScriptFinished
et al. runtime environment is preserved.
MozReview-Commit-ID: 8FZ6rNVImuC
2016-02-26 17:36:39 +03:00
|
|
|
/**
|
2017-02-10 21:36:52 +03:00
|
|
|
* Wraps any error as a WebDriverError. If the given error is already in
|
|
|
|
* the WebDriverError prototype chain, this function returns it
|
|
|
|
* unmodified.
|
Bug 1123506 - Evaluate scripts in content with lasting side-effects; r=automatedtester
In order to achieve WebDriver parity, Marionette needs the ability to
evaluate scripts in content space with lasting side-effects. This means
that state modifications should affect behaviour and state of the browsing
context, and such transgress the boundaries of the sandbox.
This patch brings a new script evaluation module that is shared between
code in chrome- and content space. This brings the number of unique
script evaluation implementations in Marionette down from six to one.
evaluate.sandbox provides the main entry-point for execution. It is
compatible with existing Marionette uses of Execute Script and Execute
Async Script commands in Mozilla clients, but also provides a new stateful
sandbox for evaluation that should have lasting side-effects.
It is not expected that Mozilla clients, such as testing/marionette/client
and the Node.js client in Gaia, should have to change as a consequence
of this change.
A substantial change to the script's runtime environment is that many
globals that previously existed are now only exposed whenever needed.
This means for example that Simple Test harness functionality (waitFor,
ok, isnot, is, &c.) is only available when using a sandbox augmented
with a Simple Test harness adapter.
Conversely, this patch does not expose marionetteScriptFinished as a
callback to asynchronous scripts for sandboxes which sandboxName parameter
is undefined, because this is what determines if the script should be
evaluated under WebDriver conformance constraints. In all other cases
where sandboxName _is_ defined, the traditional marionetteScriptFinished
et al. runtime environment is preserved.
MozReview-Commit-ID: 8FZ6rNVImuC
2016-02-26 17:36:39 +03:00
|
|
|
*/
|
2016-12-04 14:42:52 +03:00
|
|
|
error.wrap = function (err) {
|
Bug 1123506 - Evaluate scripts in content with lasting side-effects; r=automatedtester
In order to achieve WebDriver parity, Marionette needs the ability to
evaluate scripts in content space with lasting side-effects. This means
that state modifications should affect behaviour and state of the browsing
context, and such transgress the boundaries of the sandbox.
This patch brings a new script evaluation module that is shared between
code in chrome- and content space. This brings the number of unique
script evaluation implementations in Marionette down from six to one.
evaluate.sandbox provides the main entry-point for execution. It is
compatible with existing Marionette uses of Execute Script and Execute
Async Script commands in Mozilla clients, but also provides a new stateful
sandbox for evaluation that should have lasting side-effects.
It is not expected that Mozilla clients, such as testing/marionette/client
and the Node.js client in Gaia, should have to change as a consequence
of this change.
A substantial change to the script's runtime environment is that many
globals that previously existed are now only exposed whenever needed.
This means for example that Simple Test harness functionality (waitFor,
ok, isnot, is, &c.) is only available when using a sandbox augmented
with a Simple Test harness adapter.
Conversely, this patch does not expose marionetteScriptFinished as a
callback to asynchronous scripts for sandboxes which sandboxName parameter
is undefined, because this is what determines if the script should be
evaluated under WebDriver conformance constraints. In all other cases
where sandboxName _is_ defined, the traditional marionetteScriptFinished
et al. runtime environment is preserved.
MozReview-Commit-ID: 8FZ6rNVImuC
2016-02-26 17:36:39 +03:00
|
|
|
if (error.isWebDriverError(err)) {
|
|
|
|
return err;
|
|
|
|
}
|
2017-02-10 21:36:52 +03:00
|
|
|
return new WebDriverError(err);
|
Bug 1123506 - Evaluate scripts in content with lasting side-effects; r=automatedtester
In order to achieve WebDriver parity, Marionette needs the ability to
evaluate scripts in content space with lasting side-effects. This means
that state modifications should affect behaviour and state of the browsing
context, and such transgress the boundaries of the sandbox.
This patch brings a new script evaluation module that is shared between
code in chrome- and content space. This brings the number of unique
script evaluation implementations in Marionette down from six to one.
evaluate.sandbox provides the main entry-point for execution. It is
compatible with existing Marionette uses of Execute Script and Execute
Async Script commands in Mozilla clients, but also provides a new stateful
sandbox for evaluation that should have lasting side-effects.
It is not expected that Mozilla clients, such as testing/marionette/client
and the Node.js client in Gaia, should have to change as a consequence
of this change.
A substantial change to the script's runtime environment is that many
globals that previously existed are now only exposed whenever needed.
This means for example that Simple Test harness functionality (waitFor,
ok, isnot, is, &c.) is only available when using a sandbox augmented
with a Simple Test harness adapter.
Conversely, this patch does not expose marionetteScriptFinished as a
callback to asynchronous scripts for sandboxes which sandboxName parameter
is undefined, because this is what determines if the script should be
evaluated under WebDriver conformance constraints. In all other cases
where sandboxName _is_ defined, the traditional marionetteScriptFinished
et al. runtime environment is preserved.
MozReview-Commit-ID: 8FZ6rNVImuC
2016-02-26 17:36:39 +03:00
|
|
|
};
|
|
|
|
|
2015-03-17 17:27:20 +03:00
|
|
|
/**
|
|
|
|
* Unhandled error reporter. Dumps the error and its stacktrace to console,
|
|
|
|
* and reports error to the Browser Console.
|
|
|
|
*/
|
2016-12-04 14:42:52 +03:00
|
|
|
error.report = function (err) {
|
2017-02-10 21:36:52 +03:00
|
|
|
let msg = "Marionette threw an error: " + error.stringify(err);
|
2015-03-17 17:27:20 +03:00
|
|
|
dump(msg + "\n");
|
|
|
|
if (Cu.reportError) {
|
|
|
|
Cu.reportError(msg);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Prettifies an instance of Error and its stacktrace to a string.
|
|
|
|
*/
|
2016-12-04 14:42:52 +03:00
|
|
|
error.stringify = function (err) {
|
2015-03-17 17:27:20 +03:00
|
|
|
try {
|
|
|
|
let s = err.toString();
|
|
|
|
if ("stack" in err) {
|
|
|
|
s += "\n" + err.stack;
|
|
|
|
}
|
|
|
|
return s;
|
|
|
|
} catch (e) {
|
|
|
|
return "<unprintable error>";
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-11-01 01:00:21 +03:00
|
|
|
/**
|
|
|
|
* Pretty-print values passed to template strings.
|
|
|
|
*
|
|
|
|
* Usage:
|
|
|
|
*
|
|
|
|
* let input = {value: true};
|
|
|
|
* error.pprint`Expected boolean, got ${input}`;
|
|
|
|
* => "Expected boolean, got [object Object] {"value": true}"
|
|
|
|
*/
|
2016-12-04 14:42:52 +03:00
|
|
|
error.pprint = function (strings, ...values) {
|
2016-11-01 01:00:21 +03:00
|
|
|
let res = [];
|
|
|
|
for (let i = 0; i < strings.length; i++) {
|
|
|
|
res.push(strings[i]);
|
|
|
|
if (i < values.length) {
|
|
|
|
let val = values[i];
|
|
|
|
res.push(Object.prototype.toString.call(val));
|
|
|
|
let s = JSON.stringify(val);
|
|
|
|
if (s && s.length > 0) {
|
|
|
|
res.push(" ");
|
|
|
|
res.push(s);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return res.join("");
|
|
|
|
};
|
|
|
|
|
2015-09-26 19:12:01 +03:00
|
|
|
/**
|
2017-02-10 21:36:52 +03:00
|
|
|
* WebDriverError is the prototypal parent of all WebDriver errors.
|
|
|
|
* It should not be used directly, as it does not correspond to a real
|
|
|
|
* error in the specification.
|
2015-09-26 19:12:01 +03:00
|
|
|
*/
|
2017-02-10 21:36:52 +03:00
|
|
|
class WebDriverError extends Error {
|
|
|
|
/**
|
|
|
|
* @param {(string|Error)=} x
|
|
|
|
* Optional string describing error situation or Error instance
|
|
|
|
* to propagate.
|
|
|
|
*/
|
|
|
|
constructor (x) {
|
|
|
|
super(x);
|
|
|
|
this.name = this.constructor.name;
|
|
|
|
this.status = "webdriver error";
|
|
|
|
|
|
|
|
// Error's ctor does not preserve x' stack
|
|
|
|
if (error.isError(x)) {
|
|
|
|
this.stack = x.stack;
|
|
|
|
}
|
2016-01-29 15:57:46 +03:00
|
|
|
}
|
|
|
|
|
2017-02-10 21:36:52 +03:00
|
|
|
toJSON () {
|
|
|
|
return {
|
|
|
|
error: this.status,
|
|
|
|
message: this.message || "",
|
|
|
|
stacktrace: this.stack || "",
|
|
|
|
}
|
2016-01-29 15:57:46 +03:00
|
|
|
}
|
|
|
|
|
2017-02-10 21:36:52 +03:00
|
|
|
static fromJSON (json) {
|
|
|
|
if (typeof json.error == "undefined") {
|
|
|
|
let s = JSON.stringify(json);
|
|
|
|
throw new TypeError("Undeserialisable error type: " + s);
|
|
|
|
}
|
|
|
|
if (!STATUSES.has(json.error)) {
|
|
|
|
throw new TypeError("Not of WebDriverError descent: " + json.error);
|
|
|
|
}
|
2016-01-29 15:57:46 +03:00
|
|
|
|
2017-02-10 21:36:52 +03:00
|
|
|
let cls = STATUSES.get(json.error);
|
|
|
|
let err = new cls();
|
|
|
|
if ("message" in json) {
|
|
|
|
err.message = json.message;
|
|
|
|
}
|
|
|
|
if ("stacktrace" in json) {
|
|
|
|
err.stack = json.stacktrace;
|
|
|
|
}
|
|
|
|
return err;
|
2016-12-30 14:26:30 +03:00
|
|
|
}
|
2017-02-10 21:36:52 +03:00
|
|
|
}
|
2015-03-17 17:27:20 +03:00
|
|
|
|
2017-02-10 21:36:52 +03:00
|
|
|
class ElementNotAccessibleError extends WebDriverError {
|
|
|
|
constructor (message) {
|
|
|
|
super(message);
|
|
|
|
this.status = "element not accessible";
|
|
|
|
}
|
|
|
|
}
|
2015-04-15 14:18:00 +03:00
|
|
|
|
2017-02-10 21:36:52 +03:00
|
|
|
class ElementNotVisibleError extends WebDriverError {
|
|
|
|
constructor (message) {
|
|
|
|
super(message);
|
|
|
|
this.status = "element not visible";
|
|
|
|
}
|
|
|
|
}
|
2015-03-31 20:00:32 +03:00
|
|
|
|
2017-02-10 21:36:52 +03:00
|
|
|
class InsecureCertificateError extends WebDriverError {
|
|
|
|
constructor (message) {
|
|
|
|
super(message);
|
|
|
|
this.status = "insecure certificate";
|
|
|
|
}
|
|
|
|
}
|
2016-11-06 21:00:18 +03:00
|
|
|
|
2017-02-10 21:36:52 +03:00
|
|
|
class InvalidArgumentError extends WebDriverError {
|
|
|
|
constructor (message) {
|
|
|
|
super(message);
|
|
|
|
this.status = "invalid argument";
|
|
|
|
}
|
|
|
|
}
|
2015-04-02 17:16:00 +03:00
|
|
|
|
2017-02-10 21:36:52 +03:00
|
|
|
class InvalidElementStateError extends WebDriverError {
|
|
|
|
constructor (message) {
|
|
|
|
super(message);
|
|
|
|
this.status = "invalid element state";
|
|
|
|
}
|
|
|
|
}
|
2015-03-17 17:27:20 +03:00
|
|
|
|
2017-02-10 21:36:52 +03:00
|
|
|
class InvalidSelectorError extends WebDriverError {
|
|
|
|
constructor (message) {
|
|
|
|
super(message);
|
|
|
|
this.status = "invalid selector";
|
|
|
|
}
|
|
|
|
}
|
2015-04-15 14:18:00 +03:00
|
|
|
|
2017-02-10 21:36:52 +03:00
|
|
|
class InvalidSessionIDError extends WebDriverError {
|
|
|
|
constructor (message) {
|
|
|
|
super(message);
|
|
|
|
this.status = "invalid session id";
|
|
|
|
}
|
|
|
|
}
|
2015-04-15 15:38:01 +03:00
|
|
|
|
2015-03-17 17:27:20 +03:00
|
|
|
/**
|
2017-02-10 21:36:52 +03:00
|
|
|
* Creates a richly annotated error for an error situation that occurred
|
|
|
|
* whilst evaluating injected scripts.
|
2015-03-17 17:27:20 +03:00
|
|
|
*/
|
2017-02-10 21:36:52 +03:00
|
|
|
class JavaScriptError extends WebDriverError {
|
|
|
|
/**
|
|
|
|
* @param {(string|Error)} x
|
|
|
|
* An Error object instance or a string describing the error
|
|
|
|
* situation.
|
|
|
|
* @param {string=} fnName
|
|
|
|
* Name of the function to use in the stack trace message.
|
|
|
|
* @param {string=} file
|
|
|
|
* Filename of the test file on the client.
|
|
|
|
* @param {number=} line
|
|
|
|
* Line number of |file|.
|
|
|
|
* @param {string=} script
|
|
|
|
* Script being executed, in text form.
|
|
|
|
*/
|
|
|
|
constructor (
|
|
|
|
x,
|
|
|
|
fnName = undefined,
|
|
|
|
file = undefined,
|
|
|
|
line = undefined,
|
|
|
|
script = undefined) {
|
|
|
|
let msg = String(x);
|
|
|
|
let trace = "";
|
|
|
|
|
|
|
|
if (fnName) {
|
|
|
|
trace += fnName;
|
|
|
|
if (file) {
|
|
|
|
trace += ` @${file}`;
|
|
|
|
if (line) {
|
|
|
|
trace += `, line ${line}`;
|
|
|
|
}
|
2016-01-18 21:55:52 +03:00
|
|
|
}
|
2015-03-17 17:27:20 +03:00
|
|
|
}
|
|
|
|
|
2017-02-10 21:36:52 +03:00
|
|
|
if (error.isError(x)) {
|
|
|
|
let jsStack = x.stack.split("\n");
|
|
|
|
let match = jsStack[0].match(/:(\d+):\d+$/);
|
|
|
|
let jsLine = match ? parseInt(match[1]) : 0;
|
|
|
|
if (script) {
|
|
|
|
let src = script.split("\n")[jsLine];
|
|
|
|
trace += "\n" +
|
|
|
|
`inline javascript, line ${jsLine}\n` +
|
|
|
|
`src: "${src}"`;
|
|
|
|
}
|
|
|
|
trace += "\nStack:\n" + x.stack;
|
2015-03-17 17:27:20 +03:00
|
|
|
}
|
|
|
|
|
2017-02-10 21:36:52 +03:00
|
|
|
super(msg);
|
|
|
|
this.status = "javascript error";
|
|
|
|
this.stack = trace;
|
|
|
|
}
|
|
|
|
}
|
2015-03-17 17:27:20 +03:00
|
|
|
|
2017-02-10 21:36:52 +03:00
|
|
|
class NoAlertOpenError extends WebDriverError {
|
|
|
|
constructor (message) {
|
|
|
|
super(message);
|
|
|
|
this.status = "no such alert";
|
|
|
|
}
|
|
|
|
}
|
2015-03-31 20:00:32 +03:00
|
|
|
|
2017-02-10 21:36:52 +03:00
|
|
|
class NoSuchElementError extends WebDriverError {
|
|
|
|
constructor (message) {
|
|
|
|
super(message);
|
|
|
|
this.status = "no such element";
|
|
|
|
}
|
|
|
|
}
|
2015-03-31 20:00:32 +03:00
|
|
|
|
2017-02-10 21:36:52 +03:00
|
|
|
class NoSuchFrameError extends WebDriverError {
|
|
|
|
constructor (message) {
|
|
|
|
super(message);
|
|
|
|
this.status = "no such frame";
|
|
|
|
}
|
|
|
|
}
|
2015-03-17 17:27:20 +03:00
|
|
|
|
2017-02-10 21:36:52 +03:00
|
|
|
class NoSuchWindowError extends WebDriverError {
|
|
|
|
constructor (message) {
|
|
|
|
super(message);
|
|
|
|
this.status = "no such window";
|
|
|
|
}
|
|
|
|
}
|
2015-03-17 17:27:20 +03:00
|
|
|
|
2017-02-10 21:36:52 +03:00
|
|
|
class ScriptTimeoutError extends WebDriverError {
|
|
|
|
constructor (message) {
|
|
|
|
super(message);
|
|
|
|
this.status = "script timeout";
|
|
|
|
}
|
|
|
|
}
|
2015-03-17 17:27:20 +03:00
|
|
|
|
2017-02-10 21:36:52 +03:00
|
|
|
class SessionNotCreatedError extends WebDriverError {
|
|
|
|
constructor (message) {
|
|
|
|
super(message);
|
|
|
|
this.status = "session not created";
|
|
|
|
}
|
|
|
|
}
|
2015-03-17 17:27:20 +03:00
|
|
|
|
2017-02-10 21:36:52 +03:00
|
|
|
class StaleElementReferenceError extends WebDriverError {
|
|
|
|
constructor (message) {
|
|
|
|
super(message);
|
|
|
|
this.status = "stale element reference";
|
|
|
|
}
|
|
|
|
}
|
2015-04-15 14:18:00 +03:00
|
|
|
|
2017-02-10 21:36:52 +03:00
|
|
|
class TimeoutError extends WebDriverError {
|
|
|
|
constructor (message) {
|
|
|
|
super(message);
|
|
|
|
this.status = "timeout";
|
|
|
|
}
|
|
|
|
}
|
2015-03-17 17:27:20 +03:00
|
|
|
|
2017-02-10 21:36:52 +03:00
|
|
|
class UnableToSetCookieError extends WebDriverError {
|
|
|
|
constructor (message) {
|
|
|
|
super(message);
|
|
|
|
this.status = "unable to set cookie";
|
|
|
|
}
|
|
|
|
}
|
2015-04-20 15:53:51 +03:00
|
|
|
|
2017-02-10 21:36:52 +03:00
|
|
|
class UnknownCommandError extends WebDriverError {
|
|
|
|
constructor (message) {
|
|
|
|
super(message);
|
|
|
|
this.status = "unknown command";
|
|
|
|
}
|
|
|
|
}
|
2015-03-31 20:00:32 +03:00
|
|
|
|
2017-02-10 21:36:52 +03:00
|
|
|
class UnknownError extends WebDriverError {
|
|
|
|
constructor (message) {
|
|
|
|
super(message);
|
|
|
|
this.status = "unknown error";
|
|
|
|
}
|
|
|
|
}
|
2015-03-17 17:27:20 +03:00
|
|
|
|
2017-02-10 21:36:52 +03:00
|
|
|
class UnsupportedOperationError extends WebDriverError {
|
|
|
|
constructor (message) {
|
|
|
|
super(message);
|
|
|
|
this.status = "unsupported operation";
|
|
|
|
}
|
|
|
|
}
|
2016-01-29 15:57:46 +03:00
|
|
|
|
2017-02-10 21:33:37 +03:00
|
|
|
const STATUSES = new Map([
|
|
|
|
["element not accessible", ElementNotAccessibleError],
|
|
|
|
["element not visible", ElementNotVisibleError],
|
|
|
|
["insecure certificate", InsecureCertificateError],
|
|
|
|
["invalid argument", InvalidArgumentError],
|
|
|
|
["invalid element state", InvalidElementStateError],
|
|
|
|
["invalid selector", InvalidSelectorError],
|
|
|
|
["invalid session id", InvalidSessionIDError],
|
|
|
|
["javascript error", JavaScriptError],
|
|
|
|
["no alert open", NoAlertOpenError],
|
|
|
|
["no such element", NoSuchElementError],
|
|
|
|
["no such frame", NoSuchFrameError],
|
|
|
|
["no such window", NoSuchWindowError],
|
|
|
|
["script timeout", ScriptTimeoutError],
|
|
|
|
["session not created", SessionNotCreatedError],
|
|
|
|
["stale element reference", StaleElementReferenceError],
|
|
|
|
["timeout", TimeoutError],
|
|
|
|
["unable to set cookie", UnableToSetCookieError],
|
|
|
|
["unknown command", UnknownCommandError],
|
|
|
|
["unknown error", UnknownError],
|
|
|
|
["unsupported operation", UnsupportedOperationError],
|
|
|
|
["webdriver error", WebDriverError],
|
|
|
|
]);
|