Skip to content

Commit 9224281

Browse files
authored
Merge pull request #143 from seleniumbase/update-docs
Update docs
2 parents acf8bac + 9c019b9 commit 9224281

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![](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) [![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)
44

5-
**Fast, Easy, & Reliable Test Automation**
5+
**Advanced Web Automation & Test Framework**
66

77
![](https://cdn2.hubspot.net/hubfs/100006/images/sb_demo.gif "SeleniumBase")
88

@@ -496,6 +496,7 @@ referral_link = '''<a class='analytics test' href='%s'>Free-Referral Button!</a>
496496
self.execute_script('''document.body.innerHTML = \"%s\"''' % referral_link)
497497
self.click("a.analytics") # Clicks the generated button
498498
```
499+
(Due to popular demand, this traffic generation example has been baked into SeleniumBase with the ``self.generate_referral(start_page, end_page)`` and the ``self.generate_traffic(start_page, end_page, loops)`` methods.)
499500

500501
#### Using non-terminating verifications:
501502

_config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
theme: jekyll-theme-cayman
22
title: SeleniumBase
3-
description: Fast, Easy, & Reliable Test Automation
3+
description: Advanced Web Automation & Test Framework

examples/boilerplates/master_class.py renamed to examples/boilerplates/master_test_case.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
You can use this as a boilerplate for your test framework.
33
Define your customized library methods in a master class like this.
44
Then have all your test classes inherit it.
5-
The master class will inherit SeleniumBase methods from BaseCase.
5+
MasterTestCase will inherit SeleniumBase methods from BaseCase.
66
'''
77

88
from seleniumbase import BaseCase
@@ -27,7 +27,7 @@ def example_method(self):
2727
'''
2828
# Now you can do something like this in your test files:
2929
30-
from master_class import MasterTestCase
30+
from master_test_case import MasterTestCase
3131
3232
class MyTests(MasterTestCase):
3333

help_docs/before_installation.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
To run automation on various web browsers, you'll need to download a driver file for each one and place it on your System **[PATH](http://java.com/en/download/help/path.xml)**. On a Mac, ``/usr/local/bin`` is a good spot. On Windows, make sure you set the System Path under Environment Variables to include the location where you placed the driver files:
1616

17-
* For Chrome, get [Chromedriver](https://sites.google.com/a/chromium.org/chromedriver/downloads) on your System Path. (**Version 2.32 or above is recommended!**)
17+
* For Chrome, get [Chromedriver](https://sites.google.com/a/chromium.org/chromedriver/downloads) on your System Path. (**[Version 2.33](https://chromedriver.storage.googleapis.com/index.html?path=2.33/) or above is recommended!**)
1818

1919
* For Firefox, get [Geckodriver](https://github.com/mozilla/geckodriver/releases) on your System Path.
2020

@@ -32,7 +32,7 @@ Mac:
3232
brew install chromedriver
3333
```
3434

35-
(NOTE: If your existing version of chromedriver is less than 2.32, **upgrading is recommended!**)
35+
(NOTE: If your existing version of chromedriver is less than 2.33, **upgrading is recommended!**)
3636

3737
```bash
3838
brew upgrade chromedriver
@@ -41,7 +41,7 @@ brew upgrade chromedriver
4141
Linux:
4242

4343
```bash
44-
wget http://chromedriver.storage.googleapis.com/2.32/chromedriver_linux64.zip
44+
wget http://chromedriver.storage.googleapis.com/2.33/chromedriver_linux64.zip
4545
unzip chromedriver_linux64.zip
4646
mv chromedriver /usr/local/bin/
4747
chmod +x /usr/local/bin/chromedriver

0 commit comments

Comments
 (0)