Metadata-Version: 1.1
Name: seldom
Version: 1.0.0.beta
Summary: WebUI automation testing framework based on Selenium and unittest.
Home-page: https://github.com/seldomQA/seldom/
Author: bugmaster
Author-email: fnngj@126.com
License: BSD
Description: seldom
        ---------------
        
        WebUI automation testing framework based on Selenium and unittest.
        
        Installation
        ------------
        
            $ pip install seldom
        
        
        Quick Example
        ++++++++++++++++++
        
        
            import seldom
        
        
            class YouTest(seldom.TestCase):
        
                def test_case(self):
                    """a simple test case """
                    self.open("https://www.baidu.com")
                    self.type(id_="kw", text="seldom")
                    self.click(css="#su")
                    self.assertTitle("seldom_百度搜索")
        
        
            if __name__ == '__main__':
                seldom.main("test_sample.py")
        
        
        Documentation
        ++++++++++++++++++
        
        https://github.com/SeldomQA/seldom
        
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Testing
