B
     h                 @   s    d dl mZ G dd deZdS )    )
WebElementc               @   s    e Zd Zedd Zdd ZdS )FirefoxWebElementc             C   s   |  dddiS )aA  Retrieve the anonymous children of this element in an XBL
        context.  This is only available in chrome context.

        See the  `anonymous content documentation
        <https://developer.mozilla.org/en-US/docs/Mozilla/Tech/XBL/XBL_1.0_Reference/Anonymous_Content>`_
        on MDN for more information.

        ELEMENT_GET_ANONYMOUS_CHILDRENvalueN)_execute)self r   bC:\Users\sanjo\AppData\Local\Qlobot\Launcher\ext_packages\selenium\webdriver\firefox\webelement.pyanonymous_children   s    
z$FirefoxWebElement.anonymous_childrenc             C   s   |  d||dd S )a  Retrieve an anonymous descendant with a specified attribute
        value.  Typically used with an (arbitrary) anonid attribute to
        retrieve a specific anonymous child in an XBL binding.

        See the  `anonymous content documentation
        <https://developer.mozilla.org/en-US/docs/Mozilla/Tech/XBL/XBL_1.0_Reference/Anonymous_Content>`_
        on MDN for more information.

        ,ELEMENT_FIND_ANONYMOUS_ELEMENTS_BY_ATTRIBUTE)namer   r   )r   )r   r   r   r   r   r	   #find_anonymous_element_by_attribute%   s    
z5FirefoxWebElement.find_anonymous_element_by_attributeN)__name__
__module____qualname__propertyr
   r   r   r   r   r	   r      s   r   N)Z$selenium.webdriver.remote.webelementr   ZRemoteWebElementr   r   r   r   r	   <module>   s   