Skip to content

Commit 7bea21a

Browse files
committed
fix acrolinx
1 parent fa02b1b commit 7bea21a

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

articles/playwright-testing/tutorial-run-end-to-end-tests.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ ms.date: [12/18/2024]
1313

1414
# Tutorial: Run end-to-end Playwright tests with Microsoft Playwright Testing service
1515

16-
In this tutorial, you learn how to integrate your Playwright test suite with Microsoft Playwright Testing, run tests faster using cloud-hosted browsers, and troubleshoot efficiently using the service's reporting features. You'll simulate a Playwright test suite, connect it to the service for faster execution, and use reporting tools for streamlined troubleshooting.
16+
In this tutorial, you learn how to integrate your Playwright test suite with Microsoft Playwright Testing, run tests faster using cloud-hosted browsers, and troubleshoot efficiently using the service's reporting features. You simulate a Playwright test suite, connect it to the service for faster execution, and use reporting tools for streamlined troubleshooting.
1717

1818
In this tutorial, you:
1919

@@ -43,7 +43,7 @@ Before you start, validate your environment:
4343

4444
## Set up Playwright test suite
4545

46-
In this step, you are creating a Playwright test suite which will be integrated with the service.
46+
In this step, you are creating a Playwright test suite which is integrated with the service.
4747

4848
1. Clone the sample repository and navigate to test folder.
4949

@@ -59,7 +59,7 @@ npm install
5959
```
6060
3. Run Playwright tests
6161

62-
Run this command to execute tests locally, without the service. This is required to verify if the tests are running fine before integrating with the service. This project is used in the next steps to integrate with the service.
62+
Run this command to execute tests locally, without the service to identify any problems before integrating with the service. This project is used in the next steps to integrate with the service.
6363

6464
```powershell
6565
npx playwright test
@@ -82,13 +82,13 @@ When the workspace creation finishes, you're redirected to the setup guide.
8282

8383
2. Install Microsoft Playwright Testing package
8484

85-
Navigate to the location of your test suite you created in the previous tutorial and run this command to install service package.
85+
To install service package, navigate to the location of your test suite you created in the previous tutorial and run this command:
8686

8787
```npm
8888
npm init @azure/microsoft-playwright-testing@latest
8989
```
9090

91-
This generates `playwright.service.config.ts` file which serves to:
91+
This command generates `playwright.service.config.ts` file which serves to:
9292

9393
- Direct and authenticate Playwright to the Microsoft Playwright Testing service.
9494
- Adds a reporter to publish test results and artifacts.
@@ -158,7 +158,7 @@ You've now prepared the configuration for running your Playwright tests in the c
158158
159159
### Run Playwright tests with the service
160160
161-
With Microsoft Playwright Testing, you get charged based on the number of total test minutes and number of test results published. If you're a first-time user or [getting started with a free trial](./how-to-try-playwright-testing-free.md), you might start with running a single test at scale instead of your full test suite to avoid exhausting your free trial limits.
161+
With Microsoft Playwright Testing, you get charged based on the number of total test minutes and number of test results published. If you're a first-time user or [getting started with a free trial](./how-to-try-playwright-testing-free.md), you miay run a single test at scale instead of your full test suite to avoid exhausting your free trial limits.
162162

163163
Follow these steps to run Playwright tests with Microsoft Playwright Testing:
164164

0 commit comments

Comments
 (0)