diff --git a/README.md b/README.md index 65dea40c..eba36f50 100755 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # SeleniumBase [![pypi](https://img.shields.io/pypi/v/seleniumbase.svg)](https://pypi.python.org/pypi/seleniumbase) [![Build Status](https://travis-ci.org/seleniumbase/SeleniumBase.svg?branch=master)](https://travis-ci.org/seleniumbase/SeleniumBase) [![Python version](https://img.shields.io/badge/python-2.7,_3.*-22AADD.svg "Python version")](https://docs.python.org/2/) [![MIT License](http://img.shields.io/badge/license-MIT-22BBCC.svg "MIT License")](https://github.com/seleniumbase/SeleniumBase/blob/master/LICENSE) [![Join the chat at https://gitter.im/seleniumbase/SeleniumBase](https://badges.gitter.im/seleniumbase/SeleniumBase.svg)](https://gitter.im/seleniumbase/SeleniumBase?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) [![GitHub stars](https://img.shields.io/github/stars/seleniumbase/seleniumbase.svg "GitHub stars")](https://github.com/seleniumbase/SeleniumBase/stargazers) -Enterprise test automation. [Fast setup](#seleniumbase_installation). Saves [detailed logs & reports](https://github.com/seleniumbase/SeleniumBase/blob/master/examples/example_logs/ReadMe.md). (Learn [more features](https://github.com/seleniumbase/SeleniumBase/blob/master/help_docs/features_list.md)) +[Flexible](https://github.com/seleniumbase/SeleniumBase/blob/master/help_docs/command_line.md) test automation. [Fast setup](#seleniumbase_installation). Saves [detailed logs & reports](https://github.com/seleniumbase/SeleniumBase/blob/master/examples/example_logs/ReadMe.md). (Learn [more features](https://github.com/seleniumbase/SeleniumBase/blob/master/help_docs/features_list.md)) Trusted by [businesses such as HubSpot](https://github.com/seleniumbase/SeleniumBase/blob/master/help_docs/happy_customers.md). diff --git a/_config.yml b/_config.yml index 2a6413a5..4c92bbee 100644 --- a/_config.yml +++ b/_config.yml @@ -1,3 +1,3 @@ theme: jekyll-theme-cayman title: SeleniumBase -description: The missing test framework for Selenium \ No newline at end of file +description: Enterprise-Level Selenium Test Framework \ No newline at end of file diff --git a/help_docs/command_line.md b/help_docs/command_line.md index 4624cd55..83fd0fd2 100755 --- a/help_docs/command_line.md +++ b/help_docs/command_line.md @@ -1,4 +1,17 @@ -### Command Line Interface Help +### The Command Line Interface + +In addition to [settings.py](https://github.com/seleniumbase/SeleniumBase/blob/master/seleniumbase/config/settings.py), which allows you to customize the test framework, SeleniumBase gives you the flexibility to customize & control test runs from the command line: + +* Set your browser there (default = Chrome) +* Change the automation speed (with Demo Mode) +* Choose betweeen pytest & nose unittest runners +* Specify what to log and where to store logs +* Choose additional variables to pass into tests +* Choose whether to enter Debug Mode on failures +* Choose a database to save results to +* Choose a Selenium Grid to connect to + +...and more! **Examples:** (These are run from the **[examples](https://github.com/seleniumbase/SeleniumBase/tree/master/examples)** folder.): diff --git a/server_setup.py b/server_setup.py index 1de49eec..f53f7f4d 100755 --- a/server_setup.py +++ b/server_setup.py @@ -9,8 +9,8 @@ from setuptools import setup, find_packages # noqa setup( name='seleniumbase', version='1.4.10', - description='Test Automation Framework - http://seleniumbase.com', - long_description='Simple & Reliable Web Automation for Pytest & Nosetests', + description='Enterprise-Level Selenium Test Framework - seleniumbase.com', + long_description='Enterprise-Level Selenium Test Automation Framework', platforms='Mac * Windows * Linux * Docker', url='http://seleniumbase.com', author='Michael Mintz', diff --git a/setup.py b/setup.py index 31efd70a..98ba7458 100755 --- a/setup.py +++ b/setup.py @@ -8,8 +8,8 @@ from setuptools import setup, find_packages # noqa setup( name='seleniumbase', version='1.4.10', - description='Test Automation Framework - http://seleniumbase.com', - long_description='Simple & Reliable Web Automation for Pytest & Nosetests', + description='Enterprise-Level Selenium Test Framework - seleniumbase.com', + long_description='Enterprise-Level Selenium Test Automation Framework', platforms='Mac * Windows * Linux * Docker', url='http://seleniumbase.com', author='Michael Mintz',