o
    US`c	$                     @   s(  d Z ddlmZmZ G dd deZG dd deZG dd deZG d	d
 d
eZG dd deZ	G dd deZ
G dd deZG dd deZG dd deZG dd deZG dd deZG dd deZG dd deZG dd deZG dd  d eZG d!d" d"eZG d#d$ d$eZG d%d& d&eZG d'd( d(eZG d)d* d*eZG d+d, d,eZG d-d. d.eZG d/d0 d0eZG d1d2 d2eZG d3d4 d4eZG d5d6 d6eZG d7d8 d8eZG d9d: d:eZ G d;d< d<eZ!G d=d> d>eZ"G d?d@ d@eZ#G dAdB dBeZ$G dCdD dDeZ%dES )Fz7
Exceptions that may happen in all the webdriver code.
    )OptionalSequencec                	   @   sJ   e Zd ZdZddee dee deee  ddfddZdefd	d
ZdS )WebDriverExceptionz#
    Base webdriver exception.
    Nmsgscreen
stacktracereturnc                 C   s   || _ || _|| _d S N)r   r   r   )selfr   r   r    r   E/usr/local/lib/python3.10/dist-packages/selenium/common/exceptions.py__init__   s   
zWebDriverException.__init__c                 C   s:   d| j  }| jr|d7 }| jrd| j}|d| 7 }|S )NzMessage: %s
z!Screenshot: available via screen

zStacktrace:
%s)r   r   r   join)r
   Zexception_msgr   r   r   r   __str__#   s   
zWebDriverException.__str__)NNN)	__name__
__module____qualname____doc__r   strr   r   r   r   r   r   r   r      s    ,r   c                   @      e Zd ZdZdS )InvalidSwitchToTargetExceptionzJ
    Thrown when frame or window target to be switched doesn't exist.
    Nr   r   r   r   r   r   r   r   r   -       r   c                   @   r   )NoSuchFrameExceptionz@
    Thrown when frame target to be switched doesn't exist.
    Nr   r   r   r   r   r   4   r   r   c                   @   r   )NoSuchWindowExceptionz
    Thrown when window target to be switched doesn't exist.

    To find the current set of active window handles, you can get a list
    of the active window handles in the following way::

        print driver.window_handles

    Nr   r   r   r   r   r   ;       	r   c                   @   r   )NoSuchElementExceptiona  
    Thrown when element could not be found.

    If you encounter this exception, you may want to check the following:
        * Check your selector used in your find_by...
        * Element may not yet be on the screen at the time of the find operation,
          (webpage is still loading) see selenium.webdriver.support.wait.WebDriverWait()
          for how to write a wait wrapper to wait for an element to appear.
    Nr   r   r   r   r   r   H   r   r   c                   @   r   )NoSuchAttributeExceptiona%  
    Thrown when the attribute of element could not be found.

    You may want to check if the attribute exists in the particular browser you are
    testing against.  Some browsers may have different property names for the same
    property.  (IE8's .innerText vs. Firefox .textContent)
    Nr   r   r   r   r   r   U       r   c                   @   r   )NoSuchShadowRootExceptionzv
    Thrown when trying to access the shadow root of an element when it does not
    have a shadow root attached.
    Nr   r   r   r   r   r    `       r    c                   @   r   )StaleElementReferenceExceptiona  
    Thrown when a reference to an element is now "stale".

    Stale means the element no longer appears on the DOM of the page.


    Possible causes of StaleElementReferenceException include, but not limited to:
        * You are no longer on the same page, or the page may have refreshed since the element
          was located.
        * The element may have been removed and re-added to the screen, since it was located.
          Such as an element being relocated.
          This can happen typically with a javascript framework when values are updated and the
          node is rebuilt.
        * Element may have been inside an iframe or another context which was refreshed.
    Nr   r   r   r   r   r"   h   s    r"   c                   @   r   )InvalidElementStateExceptionz
    Thrown when a command could not be completed because the element is in an invalid state.

    This can be caused by attempting to clear an element that isn't both editable and resettable.
    Nr   r   r   r   r   r#   {       r#   c                       s^   e Zd ZdZddee dee deee  dee ddf
 fdd	Zdef fd
dZ  Z	S )UnexpectedAlertPresentExceptionz
    Thrown when an unexpected alert has appeared.

    Usually raised when  an unexpected modal is blocking the webdriver from executing
    commands.
    Nr   r   r   
alert_textr   c                    s   t  ||| || _d S r	   )superr   r&   )r
   r   r   r   r&   	__class__r   r   r      s   
z(UnexpectedAlertPresentException.__init__c                    s   d| j  dt   S )NzAlert Text: r   )r&   r'   r   )r
   r(   r   r   r      s   z'UnexpectedAlertPresentException.__str__)NNNN)
r   r   r   r   r   r   r   r   r   __classcell__r   r   r(   r   r%      s    8r%   c                   @   r   )NoAlertPresentExceptionz
    Thrown when switching to no presented alert.

    This can be caused by calling an operation on the Alert() class when an alert is
    not yet on the screen.
    Nr   r   r   r   r   r+      s    r+   c                   @   r   )ElementNotVisibleExceptionz
    Thrown when an element is present on the DOM, but
    it is not visible, and so is not able to be interacted with.

    Most commonly encountered when trying to click or read text
    of an element that is hidden from view.
    Nr   r   r   r   r   r,      r   r,   c                   @   r   )ElementNotInteractableExceptionz
    Thrown when an element is present in the DOM but interactions
    with that element will hit another element due to paint order
    Nr   r   r   r   r   r-      r!   r-   c                   @   r   )ElementNotSelectableExceptionzo
    Thrown when trying to select an unselectable element.

    For example, selecting a 'script' element.
    Nr   r   r   r   r   r.      r$   r.   c                   @   r   )InvalidCookieDomainExceptionzc
    Thrown when attempting to add a cookie under a different domain
    than the current URL.
    Nr   r   r   r   r   r/      r!   r/   c                   @   r   )UnableToSetCookieExceptionz5
    Thrown when a driver fails to set a cookie.
    Nr   r   r   r   r   r0      r   r0   c                   @   r   )RemoteDriverServerExceptionz
    Nr   r   r   r   r   r1      s    r1   c                   @   r   )TimeoutExceptionzA
    Thrown when a command does not complete in enough time.
    Nr   r   r   r   r   r2      r   r2   c                   @   r   )MoveTargetOutOfBoundsExceptionzt
    Thrown when the target provided to the `ActionsChains` move()
    method is invalid, i.e. out of document.
    Nr   r   r   r   r   r3      r!   r3   c                   @   r   )UnexpectedTagNameExceptionzJ
    Thrown when a support class did not get an expected web element.
    Nr   r   r   r   r   r4      r   r4   c                   @   r   )InvalidSelectorExceptionaH  
    Thrown when the selector which is used to find an element does not return
    a WebElement. Currently this only happens when the selector is an xpath
    expression and it is either syntactically invalid (i.e. it is not a
    xpath expression) or the expression does not select WebElements
    (e.g. "count(//input)").
    Nr   r   r   r   r   r5      r   r5   c                   @   r   )ImeNotAvailableExceptionz
    Thrown when IME support is not available. This exception is thrown for every IME-related
    method call if IME support is not available on the machine.
    Nr   r   r   r   r   r6      r!   r6   c                   @   r   )ImeActivationFailedExceptionz:
    Thrown when activating an IME engine has failed.
    Nr   r   r   r   r   r7      r   r7   c                   @   r   )InvalidArgumentExceptionzL
    The arguments passed to a command are either invalid or malformed.
    Nr   r   r   r   r   r8      r   r8   c                   @   r   )JavascriptExceptionzL
    An error occurred while executing JavaScript supplied by the user.
    Nr   r   r   r   r   r9     r   r9   c                   @   r   )NoSuchCookieExceptionz
    No cookie matching the given path name was found amongst the associated cookies of the
    current browsing context's active document.
    Nr   r   r   r   r   r:     r!   r:   c                   @   r   )ScreenshotExceptionz/
    A screen capture was made impossible.
    Nr   r   r   r   r   r;     r   r;   c                   @   r   ) ElementClickInterceptedExceptionz
    The Element Click command could not be completed because the element receiving the events
    is obscuring the element that was requested to be clicked.
    Nr   r   r   r   r   r<     r!   r<   c                   @   r   )InsecureCertificateExceptionz
    Navigation caused the user agent to hit a certificate warning, which is usually the result
    of an expired or invalid TLS certificate.
    Nr   r   r   r   r   r=   $  r!   r=   c                   @   r   )InvalidCoordinatesExceptionzM
    The coordinates provided to an interaction's operation are invalid.
    Nr   r   r   r   r   r>   ,  r   r>   c                   @   r   )InvalidSessionIdExceptionz
    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.
    Nr   r   r   r   r   r?   3  r!   r?   c                   @   r   )SessionNotCreatedExceptionz-
    A new session could not be created.
    Nr   r   r   r   r   r@   ;  r   r@   c                   @   r   )UnknownMethodExceptionz_
    The requested command matched a known URL but did not match any methods for that URL.
    Nr   r   r   r   r   rA   B  r   rA   N)&r   typingr   r   	Exceptionr   r   r   r   r   r   r    r"   r#   r%   r+   r,   r-   r.   r/   r0   r1   r2   r3   r4   r5   r6   r7   r8   r9   r:   r;   r<   r=   r>   r?   r@   rA   r   r   r   r   <module>   sF   	
	