mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
chore: fix typos (#12242)
This commit is contained in:
parent
ee931ca8a0
commit
4ba7c9e093
@ -49,7 +49,7 @@ When you install Puppeteer, it automatically downloads a recent version of
|
|||||||
[Chrome for Testing](https://developer.chrome.com/blog/chrome-for-testing/) (~170MB macOS, ~282MB Linux, ~280MB Windows) and a `chrome-headless-shell` binary (starting with Puppeteer v21.6.0) that is [guaranteed to
|
[Chrome for Testing](https://developer.chrome.com/blog/chrome-for-testing/) (~170MB macOS, ~282MB Linux, ~280MB Windows) and a `chrome-headless-shell` binary (starting with Puppeteer v21.6.0) that is [guaranteed to
|
||||||
work](https://pptr.dev/faq#q-why-doesnt-puppeteer-vxxx-work-with-chromium-vyyy)
|
work](https://pptr.dev/faq#q-why-doesnt-puppeteer-vxxx-work-with-chromium-vyyy)
|
||||||
with Puppeteer. The browser is downloaded to the `$HOME/.cache/puppeteer` folder
|
with Puppeteer. The browser is downloaded to the `$HOME/.cache/puppeteer` folder
|
||||||
by default (starting with Puppeteer v19.0.0). See [configuration](https://pptr.dev/api/puppeteer.configuration) for configuration options and environmental variables to control the download behavor.
|
by default (starting with Puppeteer v19.0.0). See [configuration](https://pptr.dev/api/puppeteer.configuration) for configuration options and environmental variables to control the download behavior.
|
||||||
|
|
||||||
If you deploy a project using Puppeteer to a hosting provider, such as Render or
|
If you deploy a project using Puppeteer to a hosting provider, such as Render or
|
||||||
Heroku, you might need to reconfigure the location of the cache to be within
|
Heroku, you might need to reconfigure the location of the cache to be within
|
||||||
|
@ -6,7 +6,7 @@ sidebar_label: BrowserContext.isIncognito
|
|||||||
|
|
||||||
> Warning: This API is now obsolete.
|
> Warning: This API is now obsolete.
|
||||||
>
|
>
|
||||||
> In Chrome, the [default browser context](./puppeteer.browser.defaultbrowsercontext.md) can also be "icognito" if configured via the arguments and in such cases this getter returns wrong results (see https://github.com/puppeteer/puppeteer/issues/8836). Also, the term "incognito" is not applicable to other browsers. To migrate, check the [default browser context](./puppeteer.browser.defaultbrowsercontext.md) instead: in Chrome all non-default contexts are incognito, and the default context might be incognito if you provide the `--incognito` argument when launching the browser.
|
> In Chrome, the [default browser context](./puppeteer.browser.defaultbrowsercontext.md) can also be "incognito" if configured via the arguments and in such cases this getter returns wrong results (see https://github.com/puppeteer/puppeteer/issues/8836). Also, the term "incognito" is not applicable to other browsers. To migrate, check the [default browser context](./puppeteer.browser.defaultbrowsercontext.md) instead: in Chrome all non-default contexts are incognito, and the default context might be incognito if you provide the `--incognito` argument when launching the browser.
|
||||||
|
|
||||||
Whether this [browser context](./puppeteer.browsercontext.md) is incognito.
|
Whether this [browser context](./puppeteer.browsercontext.md) is incognito.
|
||||||
|
|
||||||
|
@ -158,7 +158,7 @@ In Chrome, the [default browser context](./puppeteer.browser.defaultbrowserconte
|
|||||||
|
|
||||||
**Deprecated:**
|
**Deprecated:**
|
||||||
|
|
||||||
In Chrome, the [default browser context](./puppeteer.browser.defaultbrowsercontext.md) can also be "icognito" if configured via the arguments and in such cases this getter returns wrong results (see https://github.com/puppeteer/puppeteer/issues/8836). Also, the term "incognito" is not applicable to other browsers. To migrate, check the [default browser context](./puppeteer.browser.defaultbrowsercontext.md) instead: in Chrome all non-default contexts are incognito, and the default context might be incognito if you provide the `--incognito` argument when launching the browser.
|
In Chrome, the [default browser context](./puppeteer.browser.defaultbrowsercontext.md) can also be "incognito" if configured via the arguments and in such cases this getter returns wrong results (see https://github.com/puppeteer/puppeteer/issues/8836). Also, the term "incognito" is not applicable to other browsers. To migrate, check the [default browser context](./puppeteer.browser.defaultbrowsercontext.md) instead: in Chrome all non-default contexts are incognito, and the default context might be incognito if you provide the `--incognito` argument when launching the browser.
|
||||||
|
|
||||||
</td></tr>
|
</td></tr>
|
||||||
<tr><td>
|
<tr><td>
|
||||||
|
@ -86,7 +86,7 @@ The following preconditions are automatically checked:
|
|||||||
await page.locator('input').fill('value');
|
await page.locator('input').fill('value');
|
||||||
```
|
```
|
||||||
|
|
||||||
Automatically detects the input type and choose an approritate way to fill it out with the provided value.
|
Automatically detects the input type and choose an appropriate way to fill it out with the provided value.
|
||||||
|
|
||||||
The following preconditions are automatically checked:
|
The following preconditions are automatically checked:
|
||||||
|
|
||||||
|
@ -49,7 +49,7 @@ When you install Puppeteer, it automatically downloads a recent version of
|
|||||||
[Chrome for Testing](https://developer.chrome.com/blog/chrome-for-testing/) (~170MB macOS, ~282MB Linux, ~280MB Windows) and a `chrome-headless-shell` binary (starting with Puppeteer v21.6.0) that is [guaranteed to
|
[Chrome for Testing](https://developer.chrome.com/blog/chrome-for-testing/) (~170MB macOS, ~282MB Linux, ~280MB Windows) and a `chrome-headless-shell` binary (starting with Puppeteer v21.6.0) that is [guaranteed to
|
||||||
work](https://pptr.dev/faq#q-why-doesnt-puppeteer-vxxx-work-with-chromium-vyyy)
|
work](https://pptr.dev/faq#q-why-doesnt-puppeteer-vxxx-work-with-chromium-vyyy)
|
||||||
with Puppeteer. The browser is downloaded to the `$HOME/.cache/puppeteer` folder
|
with Puppeteer. The browser is downloaded to the `$HOME/.cache/puppeteer` folder
|
||||||
by default (starting with Puppeteer v19.0.0). See [configuration](https://pptr.dev/api/puppeteer.configuration) for configuration options and environmental variables to control the download behavor.
|
by default (starting with Puppeteer v19.0.0). See [configuration](https://pptr.dev/api/puppeteer.configuration) for configuration options and environmental variables to control the download behavior.
|
||||||
|
|
||||||
If you deploy a project using Puppeteer to a hosting provider, such as Render or
|
If you deploy a project using Puppeteer to a hosting provider, such as Render or
|
||||||
Heroku, you might need to reconfigure the location of the cache to be within
|
Heroku, you might need to reconfigure the location of the cache to be within
|
||||||
|
@ -689,7 +689,7 @@ and if you want to run Puppeteer tests in amazon-linux, follow these steps.
|
|||||||
|
|
||||||
Now Puppeteer can launch Chromium to run your tests. If you do not enable EPEL
|
Now Puppeteer can launch Chromium to run your tests. If you do not enable EPEL
|
||||||
and if you continue installing chromium as part of `npm install`, Puppeteer
|
and if you continue installing chromium as part of `npm install`, Puppeteer
|
||||||
cannot launch Chromium due to unavailablity of `libatk-1.0.so.0` and many more
|
cannot launch Chromium due to unavailability of `libatk-1.0.so.0` and many more
|
||||||
packages.
|
packages.
|
||||||
|
|
||||||
## Code Transpilation Issues
|
## Code Transpilation Issues
|
||||||
|
@ -151,7 +151,7 @@ export abstract class BrowserContext extends EventEmitter<BrowserContextEvents>
|
|||||||
*
|
*
|
||||||
* @deprecated In Chrome, the
|
* @deprecated In Chrome, the
|
||||||
* {@link Browser.defaultBrowserContext | default browser context} can also be
|
* {@link Browser.defaultBrowserContext | default browser context} can also be
|
||||||
* "icognito" if configured via the arguments and in such cases this getter
|
* "incognito" if configured via the arguments and in such cases this getter
|
||||||
* returns wrong results (see
|
* returns wrong results (see
|
||||||
* https://github.com/puppeteer/puppeteer/issues/8836). Also, the term
|
* https://github.com/puppeteer/puppeteer/issues/8836). Also, the term
|
||||||
* "incognito" is not applicable to other browsers. To migrate, check the
|
* "incognito" is not applicable to other browsers. To migrate, check the
|
||||||
|
@ -6,7 +6,7 @@ sidebar_label: BrowserContext.isIncognito
|
|||||||
|
|
||||||
> Warning: This API is now obsolete.
|
> Warning: This API is now obsolete.
|
||||||
>
|
>
|
||||||
> In Chrome, the [default browser context](./puppeteer.browser.defaultbrowsercontext.md) can also be "icognito" if configured via the arguments and in such cases this getter returns wrong results (see https://github.com/puppeteer/puppeteer/issues/8836). Also, the term "incognito" is not applicable to other browsers. To migrate, check the [default browser context](./puppeteer.browser.defaultbrowsercontext.md) instead: in Chrome all non-default contexts are incognito, and the default context might be incognito if you provide the `--incognito` argument when launching the browser.
|
> In Chrome, the [default browser context](./puppeteer.browser.defaultbrowsercontext.md) can also be "incognito" if configured via the arguments and in such cases this getter returns wrong results (see https://github.com/puppeteer/puppeteer/issues/8836). Also, the term "incognito" is not applicable to other browsers. To migrate, check the [default browser context](./puppeteer.browser.defaultbrowsercontext.md) instead: in Chrome all non-default contexts are incognito, and the default context might be incognito if you provide the `--incognito` argument when launching the browser.
|
||||||
|
|
||||||
Whether this [browser context](./puppeteer.browsercontext.md) is incognito.
|
Whether this [browser context](./puppeteer.browsercontext.md) is incognito.
|
||||||
|
|
||||||
|
@ -158,7 +158,7 @@ In Chrome, the [default browser context](./puppeteer.browser.defaultbrowserconte
|
|||||||
|
|
||||||
**Deprecated:**
|
**Deprecated:**
|
||||||
|
|
||||||
In Chrome, the [default browser context](./puppeteer.browser.defaultbrowsercontext.md) can also be "icognito" if configured via the arguments and in such cases this getter returns wrong results (see https://github.com/puppeteer/puppeteer/issues/8836). Also, the term "incognito" is not applicable to other browsers. To migrate, check the [default browser context](./puppeteer.browser.defaultbrowsercontext.md) instead: in Chrome all non-default contexts are incognito, and the default context might be incognito if you provide the `--incognito` argument when launching the browser.
|
In Chrome, the [default browser context](./puppeteer.browser.defaultbrowsercontext.md) can also be "incognito" if configured via the arguments and in such cases this getter returns wrong results (see https://github.com/puppeteer/puppeteer/issues/8836). Also, the term "incognito" is not applicable to other browsers. To migrate, check the [default browser context](./puppeteer.browser.defaultbrowsercontext.md) instead: in Chrome all non-default contexts are incognito, and the default context might be incognito if you provide the `--incognito` argument when launching the browser.
|
||||||
|
|
||||||
</td></tr>
|
</td></tr>
|
||||||
<tr><td>
|
<tr><td>
|
||||||
|
@ -86,7 +86,7 @@ The following preconditions are automatically checked:
|
|||||||
await page.locator('input').fill('value');
|
await page.locator('input').fill('value');
|
||||||
```
|
```
|
||||||
|
|
||||||
Automatically detects the input type and choose an approritate way to fill it out with the provided value.
|
Automatically detects the input type and choose an appropriate way to fill it out with the provided value.
|
||||||
|
|
||||||
The following preconditions are automatically checked:
|
The following preconditions are automatically checked:
|
||||||
|
|
||||||
|
@ -49,7 +49,7 @@ When you install Puppeteer, it automatically downloads a recent version of
|
|||||||
[Chrome for Testing](https://developer.chrome.com/blog/chrome-for-testing/) (~170MB macOS, ~282MB Linux, ~280MB Windows) and a `chrome-headless-shell` binary (starting with Puppeteer v21.6.0) that is [guaranteed to
|
[Chrome for Testing](https://developer.chrome.com/blog/chrome-for-testing/) (~170MB macOS, ~282MB Linux, ~280MB Windows) and a `chrome-headless-shell` binary (starting with Puppeteer v21.6.0) that is [guaranteed to
|
||||||
work](https://pptr.dev/faq#q-why-doesnt-puppeteer-vxxx-work-with-chromium-vyyy)
|
work](https://pptr.dev/faq#q-why-doesnt-puppeteer-vxxx-work-with-chromium-vyyy)
|
||||||
with Puppeteer. The browser is downloaded to the `$HOME/.cache/puppeteer` folder
|
with Puppeteer. The browser is downloaded to the `$HOME/.cache/puppeteer` folder
|
||||||
by default (starting with Puppeteer v19.0.0). See [configuration](https://pptr.dev/api/puppeteer.configuration) for configuration options and environmental variables to control the download behavor.
|
by default (starting with Puppeteer v19.0.0). See [configuration](https://pptr.dev/api/puppeteer.configuration) for configuration options and environmental variables to control the download behavior.
|
||||||
|
|
||||||
If you deploy a project using Puppeteer to a hosting provider, such as Render or
|
If you deploy a project using Puppeteer to a hosting provider, such as Render or
|
||||||
Heroku, you might need to reconfigure the location of the cache to be within
|
Heroku, you might need to reconfigure the location of the cache to be within
|
||||||
|
@ -689,7 +689,7 @@ and if you want to run Puppeteer tests in amazon-linux, follow these steps.
|
|||||||
|
|
||||||
Now Puppeteer can launch Chromium to run your tests. If you do not enable EPEL
|
Now Puppeteer can launch Chromium to run your tests. If you do not enable EPEL
|
||||||
and if you continue installing chromium as part of `npm install`, Puppeteer
|
and if you continue installing chromium as part of `npm install`, Puppeteer
|
||||||
cannot launch Chromium due to unavailablity of `libatk-1.0.so.0` and many more
|
cannot launch Chromium due to unavailability of `libatk-1.0.so.0` and many more
|
||||||
packages.
|
packages.
|
||||||
|
|
||||||
## Code Transpilation Issues
|
## Code Transpilation Issues
|
||||||
|
Loading…
Reference in New Issue
Block a user