Skip to content

Commit 4d4a77f

Browse files
committed
a few more spelling fixes
1 parent 474836c commit 4d4a77f

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

CHANGES.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ Catch up puppeteer v1.1.1
9898
* Add `Page.waitForXPath` and `Frame.waitForXPath`
9999
* `Page.waitFor` accepts xpath string which starts with `//`
100100
* Add `Response.fromCache` and `Response.fromServiceWorker`
101-
* Add `SecurityDetauls` class and `response.secutiryDetails`
101+
* Add `SecurityDetails` class and `response.securityDetails`
102102
* Add `Page.setCacheEnabled` method
103103
* Add `ExecutionContext.frame`
104104
* Add `dumpio` option to `launch` function
@@ -123,7 +123,7 @@ Catch up puppeteer v1.1.1
123123

124124
## Version 0.0.16 (2018-03-23)
125125

126-
* BugFIx: Skip SIGHUP option on windows (windows does not support this signal)
126+
* BugFix: Skip SIGHUP option on windows (windows does not support this signal)
127127

128128

129129
## Version 0.0.15 (2018-03-22)
@@ -134,7 +134,7 @@ Catch up puppeteer v1.0.0
134134
* Add `Page.coverage` to support JS and CSS coverage
135135
* Add XPath support with `Page.xpath`, `Frame.xpath`, and `ElementHandle.xpath`
136136
* Add `Target.createCDPSession` to work with raw Devtools Protocol
137-
* Change `Frame.executionContest` from property to coroutine
137+
* Change `Frame.executionContext` from property to coroutine
138138
* Add `ignoreDefaultArgs` option to `pyppeteer.launch`
139139
* Add `handleSIGINT`/`handleSIGTERM`/`handleSIGHUP` options to `pyppeteer.launch`
140140
* Add `Page.setDefaultNavigationTimeout` method
@@ -161,13 +161,13 @@ Catch up puppeteer v0.13.0
161161

162162
* `pyppeteer.launch()` is now **coroutine**
163163
* Implement `connect` function
164-
* `PYPPETEER_DOWNLAOD_HOST` env variable specifies host part of URL to download chromium
164+
* `PYPPETEER_DOWNLOAD_HOST` env variable specifies host part of URL to download chromium
165165
* Rename `setRequestInterceptionEnable` to `setRequestInterception`
166166
* Rename `Page.getMetrics` to `Page.metrics`
167167
* Implement `Browser.pages` to access all pages
168168
* Add `Target` class and some new method on Browser
169169
* Add `ElementHandle.querySelector` and `ElementHandle.querySelectorAll`
170-
* Refactor NavigatoinWatcher
170+
* Refactor NavigatorWatcher
171171
* add `documentloaded`, `networkidle0`, and `networkidle2` options
172172
* `Request.abort` accepts error code
173173
* `addScriptTag` and `addStyleTag` return `ElementHandle`
@@ -198,7 +198,7 @@ Catch up puppeteer v0.12.0
198198
* Deprecate `Page.injectFile`
199199
* Add `Page.querySelectorAllEval`
200200
* Add `Page.select` and `Page.type`
201-
* Add `ElementHandle.boudingBox` and `ElementHandle.screenshot`
201+
* Add `ElementHandle.boundingBox` and `ElementHandle.screenshot`
202202
* Add `ElementHandle.focus`, `ElementHandle.type`, and `ElementHandle.press`
203203
* Add `getMetrics` method
204204
* Add `offlineMode`

pyppeteer/page.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -494,7 +494,7 @@ async def deleteCookie(self, *cookies: dict) -> None:
494494
async def setCookie(self, *cookies: dict) -> None:
495495
"""Set cookies.
496496
497-
``coockies`` should be dictionaries which contain these fields:
497+
``cookies`` should be dictionaries which contain these fields:
498498
499499
* ``name`` (str): **required**
500500
* ``value`` (str): **required**

0 commit comments

Comments
 (0)