BYPASS SHELL BY ./RAZORGANZ
Server: nginx/1.20.1
System: Linux iZdzfnv9mwfppeZ 5.10.134-19.2.al8.x86_64 #1 SMP Wed Oct 29 22:47:09 CST 2025 x86_64
User: apache (48)
PHP: 8.2.30
Disabled: NONE
Upload Files
File: //usr/local/lib/python3.6/site-packages/selenium/common/__pycache__/exceptions.cpython-36.pyc
3

+�h:$�@sdZGdd�de�ZGdd�de�ZGdd�de�ZGdd�de�ZGd	d
�d
e�ZGdd�de�ZGd
d�de�ZGdd�de�Z	Gdd�de�Z
Gdd�de�ZGdd�de�ZGdd�de
�Z
Gdd�de
�ZGdd�de
�ZGdd�de�ZGdd �d e�ZGd!d"�d"e�ZGd#d$�d$e�ZGd%d&�d&e�ZGd'd(�d(e�ZGd)d*�d*e�ZGd+d,�d,e�ZGd-d.�d.e�ZGd/d0�d0e�ZGd1d2�d2e�ZGd3d4�d4e�ZGd5d6�d6e�ZGd7d8�d8e�ZGd9d:�d:e�ZGd;d<�d<e�ZGd=d>�d>e�Z Gd?d@�d@e�Z!GdAdB�dBe�Z"dCS)Dz7
Exceptions that may happen in all the webdriver code.
c@s"eZdZdZddd�Zdd�ZdS)�WebDriverExceptionz#
    Base webdriver exception.
    NcCs||_||_||_dS)N)�msg�screen�
stacktrace)�selfrrr�r�D/usr/local/lib/python3.6/site-packages/selenium/common/exceptions.py�__init__szWebDriverException.__init__cCsBd|j}|jdk	r|d7}|jdk	r>dj|j�}|d|7}|S)NzMessage: %s
z!Screenshot: available via screen
�
zStacktrace:
%s)rrr�join)rZ
exception_msgrrrr�__str__!s


zWebDriverException.__str__)NNN)�__name__�
__module__�__qualname__�__doc__rrrrrrrs
rc@seZdZdZdd�ZdS)�ErrorInResponseExceptionz�
    Thrown when an error has occurred on the server side.

    This may happen when communicating with the firefox extension
    or the remote driver server.
    cCstj||�||_dS)N)rr�response)rrrrrrr2sz!ErrorInResponseException.__init__N)rr
rrrrrrrr+src@seZdZdZdS)�InvalidSwitchToTargetExceptionzJ
    Thrown when frame or window target to be switched doesn't exist.
    N)rr
rrrrrrr7src@seZdZdZdS)�NoSuchFrameExceptionz@
    Thrown when frame target to be switched doesn't exist.
    N)rr
rrrrrrr>src@seZdZdZdS)�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

    N)rr
rrrrrrrEs	rc@seZdZdZdS)�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.
    N)rr
rrrrrrrRs	rc@seZdZdZdS)�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)
    N)rr
rrrrrrr_src@seZdZdZdS)�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.
    N)rr
rrrrrrrjsrc@seZdZdZdS)�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.
    N)rr
rrrrrrr}srcs.eZdZdZd�fdd�	Z�fdd�Z�ZS)�UnexpectedAlertPresentExceptionz�
    Thrown when an unexpected alert is appeared.

    Usually raised when when an expected modal is blocking webdriver form executing any
    more commands.
    Ncstt|�j|||�||_dS)N)�superrr�
alert_text)rrrrr)�	__class__rrr�sz(UnexpectedAlertPresentException.__init__csd|jtt|�j�fS)NzAlert Text: %s
%s)rrrr)r)rrrr�sz'UnexpectedAlertPresentException.__str__)NNNN)rr
rrrr�
__classcell__rr)rrr�src@seZdZdZdS)�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.
    N)rr
rrrrrrr�src@seZdZdZdS)�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.
    N)rr
rrrrrrr�src@seZdZdZdS)�ElementNotInteractableExceptionz�
    Thrown when an element is present in the DOM but interactions
    with that element will hit another element do to paint order
    N)rr
rrrrrrr �sr c@seZdZdZdS)�ElementNotSelectableExceptionzo
    Thrown when trying to select an unselectable element.

    For example, selecting a 'script' element.
    N)rr
rrrrrrr!�sr!c@seZdZdZdS)�InvalidCookieDomainExceptionzc
    Thrown when attempting to add a cookie under a different domain
    than the current URL.
    N)rr
rrrrrrr"�sr"c@seZdZdZdS)�UnableToSetCookieExceptionz5
    Thrown when a driver fails to set a cookie.
    N)rr
rrrrrrr#�sr#c@seZdZdZdS)�RemoteDriverServerExceptionz
    N)rr
rrrrrrr$�sr$c@seZdZdZdS)�TimeoutExceptionzA
    Thrown when a command does not complete in enough time.
    N)rr
rrrrrrr%�sr%c@seZdZdZdS)�MoveTargetOutOfBoundsExceptionzt
    Thrown when the target provided to the `ActionsChains` move()
    method is invalid, i.e. out of document.
    N)rr
rrrrrrr&�sr&c@seZdZdZdS)�UnexpectedTagNameExceptionzJ
    Thrown when a support class did not get an expected web element.
    N)rr
rrrrrrr'�sr'c@seZdZdZdS)�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)").
    N)rr
rrrrrrr(�sr(c@seZdZdZdS)�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.
    N)rr
rrrrrrr)�sr)c@seZdZdZdS)�ImeActivationFailedExceptionz:
    Thrown when activating an IME engine has failed.
    N)rr
rrrrrrr*�sr*c@seZdZdZdS)�InvalidArgumentExceptionzL
    The arguments passed to a command are either invalid or malformed.
    N)rr
rrrrrrr+sr+c@seZdZdZdS)�JavascriptExceptionzL
    An error occurred while executing JavaScript supplied by the user.
    N)rr
rrrrrrr,sr,c@seZdZdZdS)�NoSuchCookieExceptionz�
    No cookie matching the given path name was found amongst the associated cookies of the
    current browsing context's active document.
    N)rr
rrrrrrr-sr-c@seZdZdZdS)�ScreenshotExceptionz/
    A screen capture was made impossible.
    N)rr
rrrrrrr.sr.c@seZdZdZdS)� ElementClickInterceptedExceptionz�
    The Element Click command could not be completed because the element receiving the events
    is obscuring the element that was requested clicked.
    N)rr
rrrrrrr/sr/c@seZdZdZdS)�InsecureCertificateExceptionz�
    Navigation caused the user agent to hit a certificate warning, which is usually the result
    of an expired or invalid TLS certificate.
    N)rr
rrrrrrr0%sr0c@seZdZdZdS)�InvalidCoordinatesExceptionzL
    The coordinates provided to an interactions operation are invalid.
    N)rr
rrrrrrr1-sr1c@seZdZdZdS)�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.
    N)rr
rrrrrrr24sr2c@seZdZdZdS)�SessionNotCreatedExceptionz-
    A new session could not be created.
    N)rr
rrrrrrr3<sr3c@seZdZdZdS)�UnknownMethodExceptionz]
    The requested command matched a known URL but did not match an method for that URL.
    N)rr
rrrrrrr4Csr4N)#r�	Exceptionrrrrrrrrrrrrr r!r"r#r$r%r&r'r(r)r*r+r,r-r.r/r0r1r2r3r4rrrr�<module>sB