Metadata-Version: 2.1
Name: selethon
Version: 1.0.0
Summary: automated controll website
Home-page: UNKNOWN
Author: Thanawat Petchuen
Author-email: thanawat1petchuen@gmail.com
License: MIT
Description: 
        # Selenus
        
        The greatest automated browser controller using Selenium.
        
        
        ## Prerequisites
        
        This program needs Python 3 and following libraries
        
        * [WebDriverManager](https://pypi.org/project/webdrivermanager/) - Webdriver manager for Python
        
        
        ### Installing
        
        First, install this project by pip
        
        ```
        pip install selenus
        ```
        
        Download webdriver for selenus
        
        ```
        selenus webdriver chrome
        ```
        
        ## Documentation
        Init the browser by
        ```python
        from selenus import Selenus
        
        browser = Selenus()
        ```
        
        Open the url
        ```python
        browser.open("https://www.google.com")
        ```
        
        Type text into input
        ```python
        browser.type("input.gLFyf", "thanawatpetchuen site:github.com")
        ```
        
        Click element
        ```python
        browser.click("div.FPdoLc>center>input:nth-child(1)")
        ```
        
        ## Authors
        
        * **Thanawat Petchuen** - [Thanawat(GitHub)](https://github.com/thanawatpetchuen) - [Thanawat(Bitbucket)](https://bitbucket.org/thanawatpetchuen/) 
        
        
        ## License
        
        This project is licensed under the MIT License 
        
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=3.6.0
Description-Content-Type: text/markdown
