Enum fantoccini::error::NewSessionError [] [src]

pub enum NewSessionError {
    BadWebdriverUrl(ParseError),
    Failed(Error),
    Lost(IOError),
    NotW3C(Json),
    SessionNotCreated(WebDriverError),
}

An error occured while attempting to establish a session for a new Client.

Variants

The given WebDriver URL is invalid.

The WebDriver server could not be reached.

The connection to the WebDriver server was lost.

The server did not give a WebDriver-conforming response.

The WebDriver server refused to create a new session.

Trait Implementations

impl Debug for NewSessionError
[src]

[src]

Formats the value using the given formatter. Read more

impl Error for NewSessionError
[src]

[src]

A short description of the error. Read more

[src]

The lower-level cause of this error, if any. Read more

impl Display for NewSessionError
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations