Skip to content

Commit fa02b1b

Browse files
committed
fix typos
1 parent b7e4117 commit fa02b1b

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

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

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
title: Tutorial: Run end to end tests with Playwright Testing
3-
description: "In this tutorial, you learn how to integrate Microsoft Playwright Testing with a Playwright test suite, run Playwright tests on cloud hosted browsers and troubleshoot failed test using reports."
2+
title: Tutorial: Run end-to-end tests with Playwright Testing
3+
description: "In this tutorial, you learn how to integrate Microsoft Playwright Testing with a Playwright test suite, run Playwright tests on cloud hosted browsers and troubleshoot failed tests using reports."
44
author: vvs11
55
ms.author: vanshsingh
66
ms.service: microsoft-playwright-testing
@@ -11,22 +11,22 @@ ms.date: [12/18/2024]
1111

1212
---
1313

14-
# Tutorial: Run end to end Playwright tests with Microsoft Playwright Testing service
14+
# 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 with 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'll 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

2020
> [!div class="checklist"]
2121
> * Set up a Playwright test suite.
22-
> * Integrate Playwright test suite with Microsoft Playwright Testing service.
22+
> * Integrate the Playwright test suite with Microsoft Playwright Testing service.
2323
> * Run the test suite with the service for faster execution and efficient troubleshooting.
2424
2525
## Prerequisites
2626

2727
* An Azure account with an active subscription. If you don't have an Azure subscription, create a [free account](https://azure.microsoft.com/free/?WT.mc_id=A261C142F) before you begin.
2828
* The [Azure CLI](/cli/azure/install-azure-cli) installed on your local computer.
29-
* Azure CLI version 2.2.0 or later. Run `az --version` to find the version that is installed on your computer. If you need to install or upgrade the Azure CLI, see [How to install the Azure CLI](/cli/azure/install-azure-cli).
29+
* Azure CLI version 2.2.0 or later. Run `az --version` to check the installed version on your computer. If you need to install or upgrade the Azure CLI, see [How to install the Azure CLI](/cli/azure/install-azure-cli).
3030
* Visual Studio Code. If you don't have it, [download and install it](https://code.visualstudio.com/Download).
3131
* Git. If you don't have it, [download and install it](https://git-scm.com/download).
3232

@@ -101,7 +101,7 @@ To get the service endpoint URL, perform the following steps:
101101

102102
1. In **Add region endpoint in your setup**, copy the region endpoint for your workspace.
103103

104-
The endpoint URL matches the Azure region that you selected when creating the workspace. Make sure this URL is available in `PLAYWRIGHT_SERVICE_URL` environment variable.
104+
The endpoint URL matches the Azure region that you selected when creating the workspace. Ensure this URL is available in `PLAYWRIGHT_SERVICE_URL` environment variable.
105105

106106
:::image type="content" source="./media/quickstart-run-end-to-end-tests/playwright-testing-region-endpoint.png" alt-text="Screenshot that shows how to copy the workspace region endpoint in the Playwright Testing portal." lightbox="./media/quickstart-run-end-to-end-tests/playwright-testing-region-endpoint.png":::
107107

@@ -143,7 +143,7 @@ az login
143143

144144
6. Enable artifacts in your Playwright setup
145145

146-
In the `playwright.config.ts` file of your project, make sure you are collecting all the required artifacts.
146+
In the `playwright.config.ts` file of your project, ensure you are collecting all the required artifacts.
147147
```typescript
148148
use: {
149149
trace: 'on-first-retry',
@@ -160,7 +160,7 @@ You've now prepared the configuration for running your Playwright tests in the c
160160
161161
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.
162162

163-
Perform the following steps to run Playwright tests with Microsoft Playwright Testing:
163+
Follow these steps to run Playwright tests with Microsoft Playwright Testing:
164164

165165
1. Open a terminal window.
166166

@@ -201,6 +201,6 @@ You can now troubleshoot the failed test cases in the Playwright portal.
201201

202202
> [Set up continuous end-to-end testing in CI/CD](./quickstart-automate-end-to-end-testing.md)
203203

204-
> [Explore service config options](./how-to-use-service-config-file.md)
204+
> [Explore service configuration options](./how-to-use-service-config-file.md)
205205

206206
> [Determine the optimal test suite configuration](./concept-determine-optimal-configuration.md)

0 commit comments

Comments
 (0)