Metadata-Version: 2.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
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
Requires-Dist: selenium (>=3.12.0)
Requires-Dist: parameterized (==0.7.0)
Requires-Dist: colorama (>=0.4.3)

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


