pub enum WebdriverError {
Show 31 variants
UnsupportedPlatform,
FailedRequest,
InvalidResponse,
Unknow,
ElementClickIntercepted,
ElementNotInteractable,
InsecureCertificate,
InvalidArgument,
InvalidCookieDomain,
InvalidElementState,
InvalidSelector,
InvalidSessionId,
JavascriptError,
MoveTargetOutOfBounds,
NoSuchAlert,
NoSuchCookie,
NoSuchElement,
NoSuchFrame,
NoSuchWindow,
ScriptTimeoutError,
SessionNotCreated,
StaleElementReference,
Timeout,
UnnableToSetCookie,
UnableToCaptureScreen,
UnexpectedAlertOpen,
UnknowCommand,
UnknowError,
UnknowMethod,
UnsupportedOperation,
Custom(String),
}
Variants§
UnsupportedPlatform
FailedRequest
InvalidResponse
Unknow
ElementClickIntercepted
ElementNotInteractable
InsecureCertificate
InvalidArgument
InvalidCookieDomain
InvalidElementState
InvalidSelector
InvalidSessionId
JavascriptError
MoveTargetOutOfBounds
NoSuchAlert
NoSuchCookie
NoSuchElement
NoSuchFrame
NoSuchWindow
ScriptTimeoutError
SessionNotCreated
StaleElementReference
Timeout
UnnableToSetCookie
UnableToCaptureScreen
UnexpectedAlertOpen
UnknowCommand
UnknowError
UnknowMethod
UnsupportedOperation
Custom(String)
Implementations§
Trait Implementations§
Source§impl Clone for WebdriverError
impl Clone for WebdriverError
Source§fn clone(&self) -> WebdriverError
fn clone(&self) -> WebdriverError
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for WebdriverError
impl Debug for WebdriverError
Source§impl PartialEq for WebdriverError
impl PartialEq for WebdriverError
impl StructuralPartialEq for WebdriverError
Auto Trait Implementations§
impl Freeze for WebdriverError
impl RefUnwindSafe for WebdriverError
impl Send for WebdriverError
impl Sync for WebdriverError
impl Unpin for WebdriverError
impl UnwindSafe for WebdriverError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more