[][src]Enum webdriver::error::ErrorStatus

pub enum ErrorStatus {
    ElementClickIntercepted,
    ElementNotInteractable,
    ElementNotSelectable,
    InsecureCertificate,
    InvalidArgument,
    InvalidCookieDomain,
    InvalidCoordinates,
    InvalidElementState,
    InvalidSelector,
    InvalidSessionId,
    JavascriptError,
    MoveTargetOutOfBounds,
    NoSuchAlert,
    NoSuchCookie,
    NoSuchElement,
    NoSuchFrame,
    NoSuchWindow,
    ScriptTimeout,
    SessionNotCreated,
    StaleElementReference,
    Timeout,
    UnableToCaptureScreen,
    UnableToSetCookie,
    UnexpectedAlertOpen,
    UnknownCommand,
    UnknownError,
    UnknownMethod,
    UnknownPath,
    UnsupportedOperation,
}

Variants

ElementClickIntercepted

The ElementClick command could not be completed because the element receiving the events is obscuring the element that was requested clicked.

ElementNotInteractable

A command could not be completed because the element is not pointer- or keyboard interactable.

ElementNotSelectable

An attempt was made to select an element that cannot be selected.

InsecureCertificate

Navigation caused the user agent to hit a certificate warning, which is usually the result of an expired or invalid TLS certificate.

InvalidArgument

The arguments passed to a command are either invalid or malformed.

InvalidCookieDomain

An illegal attempt was made to set a cookie under a different domain than the current page.

InvalidCoordinates

The coordinates provided to an interactions operation are invalid.

InvalidElementState

A command could not be completed because the element is an invalid state, e.g. attempting to click an element that is no longer attached to the document.

InvalidSelector

Argument was an invalid selector.

InvalidSessionId

Occurs if the given session ID is not in the list of active sessions, meaning the session either does not exist or that it’s not active.

JavascriptError

An error occurred while executing JavaScript supplied by the user.

MoveTargetOutOfBounds

The target for mouse interaction is not in the browser’s viewport and cannot be brought into that viewport.

NoSuchAlert

An attempt was made to operate on a modal dialogue when one was not open.

NoSuchCookie

No cookie matching the given path name was found amongst the associated cookies of the current browsing context’s active document.

NoSuchElement

An element could not be located on the page using the given search parameters.

NoSuchFrame

A command to switch to a frame could not be satisfied because the frame could not be found.

NoSuchWindow

A command to switch to a window could not be satisfied because the window could not be found.

ScriptTimeout

A script did not complete before its timeout expired.

SessionNotCreated

A new session could not be created.

StaleElementReference

A command failed because the referenced element is no longer attached to the DOM.

Timeout

An operation did not complete before its timeout expired.

UnableToCaptureScreen

A screen capture was made impossible.

UnableToSetCookie

Setting the cookie’s value could not be done.

UnexpectedAlertOpen

A modal dialogue was open, blocking this operation.

UnknownCommand

The requested command could not be executed because it does not exist.

UnknownError

An unknown error occurred in the remote end whilst processing the command.

UnknownMethod

The requested command matched a known endpoint, but did not match a method for that endpoint.

UnknownPathUnsupportedOperation

Indicates that a [command] that should have executed properly is not currently supported.

Methods

impl ErrorStatus[src]

pub fn error_code(&self) -> &'static str[src]

Returns the string serialisation of the error type.

pub fn http_status(&self) -> StatusCode[src]

Returns the correct HTTP status code associated with the error type.

Trait Implementations

impl PartialEq<ErrorStatus> for ErrorStatus[src]

impl From<String> for ErrorStatus[src]

Deserialises error type from string.

impl Debug for ErrorStatus[src]

impl Serialize for ErrorStatus[src]

impl<'de> Deserialize<'de> for ErrorStatus[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T> Same<T> for T

type Output = T

Should always be Self