docs: fix various spelling mistakes in the docs project directory. (#23510)

Signed-off-by: Gary McDonald <mcdonagj@dukes.jmu.edu>
Signed-off-by: Max Schmitt <max@schmitt.mx>
Co-authored-by: Max Schmitt <max@schmitt.mx>
This commit is contained in:
Gary McDonald 2023-06-04 12:04:42 -04:00 committed by GitHub
parent 9cd49d5dd5
commit 718ee69cb8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 4 deletions

View file

@ -134,7 +134,7 @@ pwsh bin/Debug/netX/playwright.ps1 install --with-deps chromium
See [system requirements](./intro.md#system-requirements) for officially supported operating systems.
## Update Playwright regulary
## Update Playwright regularly
* langs: js
By keeping your Playwright version up to date you will be able to use new features and test your app on the latest browser versions and catch failures before the latest browser version is released to the public.

View file

@ -354,7 +354,7 @@ After performing authentication and closing the browser, `auth.json` will contai
<img width="1394" alt="login to Github screen" src="https://user-images.githubusercontent.com/13063165/220561688-04b2b984-4ba6-4446-8b0a-8058876e2a02.png" />
Make sure you only use the `auth.json` locally as it contains sensative information. Add it to your `.gitignore` or delete it once you have finished generating your tests.
Make sure you only use the `auth.json` locally as it contains sensitive information. Add it to your `.gitignore` or delete it once you have finished generating your tests.
#### Load authenticated state

View file

@ -133,7 +133,7 @@ The error.
* since: v1.33
Called immediately before test runner exists. At this point all the reporters
have recived the [`method: Reporter.onEnd`] signal, so all the reports should
have received the [`method: Reporter.onEnd`] signal, so all the reports should
be build. You can run the code that uploads the reports in this hook.
## optional method: Reporter.onStdErr

View file

@ -413,7 +413,7 @@ export interface Reporter {
onError?(error: TestError): void;
/**
* Called immediately before test runner exists. At this point all the reporters have recived the
* Called immediately before test runner exists. At this point all the reporters have received the
* [reporter.onEnd(result)](https://playwright.dev/docs/api/class-reporter#reporter-on-end) signal, so all the reports
* should be build. You can run the code that uploads the reports in this hook.
*/