Skip to content

Commit 66e0be8

Browse files
committed
ReadMe update
1 parent c1aa659 commit 66e0be8

File tree

1 file changed

+16
-8
lines changed

1 file changed

+16
-8
lines changed

README.md

Lines changed: 16 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
### *(An open-source Python library that makes it easier to write reliable browser automation for testing and more...)*
44

55
#### Features include:
6-
* [Code](https://github.com/mdmintz/SeleniumBase/blob/master/seleniumbase/fixtures/base_case.py) for quickly building [reliable WebDriver scripts](https://github.com/mdmintz/SeleniumBase/blob/master/examples/my_first_test.py).
7-
* [Plugins](https://github.com/mdmintz/SeleniumBase/tree/master/seleniumbase/plugins) for logging [data and screenshots](https://github.com/mdmintz/SeleniumBase/tree/master/examples/logs_for_test_fail).
6+
* [Python methods](https://github.com/mdmintz/SeleniumBase/blob/master/seleniumbase/fixtures/base_case.py) for quickly building [reliable WebDriver scripts](https://github.com/mdmintz/SeleniumBase/blob/master/examples/my_first_test.py).
7+
* [Plugins](https://github.com/mdmintz/SeleniumBase/tree/master/seleniumbase/plugins) for logging [data and screenshots](https://github.com/mdmintz/SeleniumBase/tree/master/examples/logs_for_test_fail) automatically.
88
* Easy integration with [Selenium Grid](https://github.com/mdmintz/SeleniumBase/tree/master/integrations/selenium_grid), [MySQL](https://github.com/mdmintz/SeleniumBase/blob/master/seleniumbase/core/testcase_manager.py), [Docker](https://github.com/mdmintz/SeleniumBase/blob/master/integrations/docker/ReadMe.md), [Jenkins on Google Cloud](https://github.com/mdmintz/SeleniumBase/tree/master/integrations/google_cloud), and [Amazon S3](https://github.com/mdmintz/SeleniumBase/blob/master/seleniumbase/plugins/s3_logging_plugin.py).
99
* Customizable with command-line options and a global config file: [settings.py](https://github.com/mdmintz/SeleniumBase/blob/master/seleniumbase/config/settings.py).
1010

@@ -31,9 +31,11 @@ If "pip" did not come with your Python installation, you can [GET PIP HERE](http
3131

3232
(NOTE: You can download the SeleniumBase repository right from GitHub and skip all the git-related commands. That's probably the fastest way if you want to quickly get a live demo of this tool up and running.)
3333

34-
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
35-
brew install git
36-
brew update
34+
```bash
35+
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
36+
brew install git
37+
brew update
38+
```
3739

3840
(WINDOWS users: Skip the Homebrew part and [download Git here](http://git-scm.com/download).)
3941

@@ -43,7 +45,9 @@ If "pip" did not come with your Python installation, you can [GET PIP HERE](http
4345

4446
Mac:
4547

46-
brew install MySQL
48+
```bash
49+
brew install MySQL
50+
```
4751

4852
Windows: [Download MySQL here](http://dev.mysql.com/downloads/windows/)
4953

@@ -67,13 +71,17 @@ sudo easy_install virtualenvwrapper
6771

6872
Windows:
6973

70-
pip install virtualenv
74+
```bash
75+
pip install virtualenv
76+
```
7177

7278
#### [Chromedriver](https://sites.google.com/a/chromium.org/chromedriver/) and [PhantomJS](http://phantomjs.org/)
7379

7480
Mac:
7581

76-
brew install chromedriver phantomjs
82+
```bash
83+
brew install chromedriver phantomjs
84+
```
7785

7886
Windows: [Download Chromedriver](https://sites.google.com/a/chromium.org/chromedriver/downloads) and put it in your PATH. Next, [Download PhantomJS](https://bitbucket.org/ariya/phantomjs/downloads) and also put that in your PATH.
7987

0 commit comments

Comments
 (0)