Skip to content

Commit dd31277

Browse files
maratoriSergeyPirogov
authored andcommitted
Fix typos (#44)
1 parent 77f740e commit dd31277

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
* Python 3.5 support added
2323

2424
=== 1.2 (Released 27.12.2016)
25-
* Windows platfor support added
25+
* Windows platform support added
2626
* Github api token support added for Firefox
2727
* Code refactoring
2828

README.adoc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
image:https://travis-ci.org/SergeyPirogov/webdriver_manager.svg?branch=master["Build Status", link="https://travis-ci.org/SergeyPirogov/webdriver_manager"]
44
image:https://img.shields.io/pypi/v/webdriver_manager.svg["PyPI", link="https://pypi.org/project/webdriver-manager/"]
55

6-
The main idea is to simplify managemet of binary drivers for different browsers.
6+
The main idea is to simplify management of binary drivers for different browsers.
77

88
For now support:
99

@@ -14,7 +14,7 @@ For now support:
1414
- PhantomJS
1515
1616
Before:
17-
You should download binary chromedriver, unzip it somwhere in you PC and set path to this driver like this:
17+
You should download binary chromedriver, unzip it somewhere in you PC and set path to this driver like this:
1818

1919
```
2020
webdriver.Chrome('/home/user/drivers/chromedriver')
@@ -49,7 +49,7 @@ If you face error related to github credentials, you need to place github token:
4949
```python
5050
driver = webdriver.Firefox(executable_path=GeckoDriverManager().install())
5151
```
52-
(*) access_token requred to work with Github API more info https://help.github.com/articles/creating-an-access-token-for-command-line-use/. You can set **gh_token** using config.ini file see Configuration section below.
52+
(*) access_token required to work with Github API more info https://help.github.com/articles/creating-an-access-token-for-command-line-use/. You can set **gh_token** using config.ini file see Configuration section below.
5353

5454
Use with Edge:
5555

@@ -76,7 +76,7 @@ offline = False
7676
* gh_token - Github access token to solve issues with API rate limit
7777
* driver_path - path to driver that was already downloaded
7878
* version - by default driver lookup for the latest version of the driver, you can freeze it
79-
* offline - mode that will disable automatic driver lookup. In this case you need either specify exect driver version that is already in cache **${user_home}/.wdm** or set path to the driver using **driver_path** veariable.
79+
* offline - mode that will disable automatic driver lookup. In this case you need either specify exact driver version that is already in cache **${user_home}/.wdm** or set path to the driver using **driver_path** variable.
8080

8181
Same variables can be set for **[ChromeDriver]** and **[EdgeDriver]**
8282

@@ -91,7 +91,7 @@ offline = True
9191
```
9292

9393
It will automatically download latest release of chromedriver and set path. Moreover when the new version of the driver
94-
will be released, webriver manager will download it and update path.
94+
will be released, webdriver manager will download it and update path.
9595

9696
This will make your test automation more elegant and robust!
9797

release-process.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Steps::
1010
tox -esphinx-docs
1111

1212

13-
Decleare package version
13+
Declare package version
1414
------------------------
1515

1616
In setup.py bump version to the next::
@@ -51,7 +51,7 @@ Steps::
5151
python setup.py bdist_wheel
5252

5353

54-
Check install capability for the whell
54+
Check install capability for the wheel
5555
--------------------------------------
5656

5757
Steps::

tests/test_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
expect_gh_token = ''
88

99

10-
def test_config_with_deafault_params():
10+
def test_config_with_default_params():
1111
config = Configuration(config_folder=os.path.dirname(__file__), section="GeckoDriver", file_name="config.ini")
1212
assert config.driver_latest_release_url == expect_mz_latest
1313
assert config.mozila_release_tag == expect_mz_tag

webdriver_manager/driver.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ def get_url(self):
6565
# type: () -> str
6666
# https://github.com/mozilla/geckodriver/releases/download/v0.11.1/geckodriver-v0.11.1-linux64.tar.gz
6767
console(
68-
"Getting latest mozila release info for {0}".format(
68+
"Getting latest mozilla release info for {0}".format(
6969
self.get_version()))
7070
resp = requests.get(self.tagged_release_url)
7171
validate_response(self, resp)

0 commit comments

Comments
 (0)