Metadata-Version: 1.0
Name: selenate
Version: 0.3.0
Summary: Web Automation made easy
Home-page: https://github.com/wmak/selenate
Author: William Mak
Author-email: WilliamSYMak@gmail.com
License: Apache 2.0
Description: selenate
        ========
        
        .. image:: https://pypip.in/v/selenate/badge.png
            :target: http://pypi.python.org/pypi/selenate/
        
        .. image:: https://pypip.in/d/selenate/badge.png
            :target: http://pypi.python.org/pypi/selenate/
        
        
        Web Automation made easy, built around Selenium
        
        Setting up
        ----------
        1. First off make sure your browser is up to date, selenate will by default use firefox_.
        
        .. _firefox: http://www.mozilla.org/en-GB/firefox/new/
        
        2. Download the latest selenium server look for the latest version number directory, and find a file selenium-server-standalone-x.xx.x.jar and save it as selenium-server_.jar
        
        .. _selenium-server: http://selenium-release.storage.googleapis.com/index.html
        
        3. Install selenate
        
        .. code-block:: bash
        
            $ pip install selenate
        
        4. Install the Java Runtime Environment if you have not already, instructions to do so are here_. It's also very likely that your package manager can also install it for you.
        
        .. _here: http://www.oracle.com/technetwork/java/javase/downloads/index.html
        
        Documentation
        -------------
        Documentation is available at readthedocs_
        
        .. _readthedocs: http://selenate.readthedocs.org/en/latest/
        
        Coding
        ------
        Here's some basic code to start a browser and navigate a little bit
        
        .. code-block:: python
        
            from selenate import Selenate
            browser = Selenate() # start your browser
            browser.get("https://github.com/wmak/selenate") # go to this url
            browser.click(".mega-octicon") # click on this css element
        
Platform: UNKNOWN
