o
    M,öhn
  ã                   @   s   d Z G dd„ dƒZdS )z(The Desired Capabilities implementation.c                   @   s‚   e Zd ZdZddddœZdddœZdd	iZdd
iZdddœZddddœZ	dddddœZ
ddddœZddddœZddiZddiZdS )ÚDesiredCapabilitiesaó  Set of default supported desired capabilities.

    Use this as a starting point for creating a desired capabilities object for
    requesting remote webdrivers for connecting to selenium server or selenium grid.

    Usage Example::

        from selenium import webdriver
        from selenium.webdriver.firefox.options import Options

        selenium_grid_url = "http://198.0.0.1:4444/wd/hub"

        # Create a new Options object for the desired browser.
        options = Options()
        options.set_capability("platformName", "windows")
        options.browser_version = "142"

        # Instantiate an instance of Remote WebDriver with the new options.
        driver = webdriver.Remote(command_executor=selenium_grid_url, options=options)
    ÚfirefoxT)ÚbrowserNameÚacceptInsecureCertszmoz:debuggerAddresszinternet explorerÚwindows)r   ÚplatformNamer   ÚMicrosoftEdgeÚchromeÚsafariÚmacÚhtmlunitÚ ÚANY)r   ÚversionÚplatform)r   r   r   ÚjavascriptEnabledÚiPhoneÚiPadÚMiniBrowserN)Ú__name__Ú
__module__Ú__qualname__Ú__doc__ÚFIREFOXÚINTERNETEXPLORERÚEDGEÚCHROMEÚSAFARIÚHTMLUNITÚHTMLUNITWITHJSÚIPHONEÚIPADÚ	WEBKITGTKÚ	WPEWEBKIT© r#   r#   úz/var/www/www-root/data/www/bot.pdev.uz/venv/lib/python3.10/site-packages/selenium/webdriver/common/desired_capabilities.pyr      sJ    ýþÿÿþýüýýÿÿr   N)r   r   r#   r#   r#   r$   Ú<module>   s   