Skip to content

Commit bf44f45

Browse files
committed
addressed feedback
1 parent 789098e commit bf44f45

File tree

4 files changed

+12
-7
lines changed

4 files changed

+12
-7
lines changed

articles/playwright-testing/how-to-use-service-config-file.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ If you don't have this file in your code, follow the QuickStart guide, see [Quic
1313
> [!IMPORTANT]
1414
> Microsoft Playwright Testing is currently in preview. For legal terms that apply to Azure features that are in beta, in preview, or otherwise not yet released into general availability, see the [Supplemental Terms of Use for Microsoft Azure Previews](https://azure.microsoft.com/support/legal/preview-supplemental-terms/).
1515
16+
## Prerequisites
17+
18+
* Follow the Qickstart guide and set up a project to run with Microsoft Playwright Testing service. See, [Quickstart: Run end-to-end tests at scale with Microsoft Playwright Testing Preview](./quickstart-run-end-to-end-tests.md)
19+
1620
Here's version of the `playwright.service.config.ts` file with all the available options:
1721

1822
```typescript
@@ -53,7 +57,7 @@ export default defineConfig(
5357
- **Description**: This setting allows you to choose the authentication method you want to use for your test run.
5458
- **Available Options**:
5559
- `TOKEN` to use access tokens. You need to enable authentication using access tokens if you want to use this option, see [manage authentication](./how-to-manage-authentication.md).
56-
- `ENTRA` to use Enrta ID for authentication. It's the default mode.
60+
- `ENTRA` to use Entra ID for authentication. It's the default mode.
5761
- **Default Value**: `ENTRA_ID`
5862
- **Example**:
5963
```typescript
@@ -80,7 +84,7 @@ export default defineConfig(
8084
```
8185

8286
* **`credential`**:
83-
- **Description**: This setting allows you to select the authentication method you want to use with Entra.
87+
- **Description**: This setting allows you to select the authentication method you want to use with Microsoft Entra ID.
8488
- **Example**:
8589
```typescript
8690
credential: new AzureCliCredential()

articles/playwright-testing/overview-what-is-microsoft-playwright-testing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.custom: playwright-testing-preview
88

99
# What is Microsoft Playwright Testing Preview?
1010

11-
Microsoft Playwright Testing Preview is a fully managed service for end-to-end testing built on top of Playwright. With Playwright, you can automate end-to-end tests to ensure your web applications work the way you expect it to, across different web browsers and operating systems. The service abstracts the complexity and infrastructure for running Playwright tests and managing results and artifacts. The service runs tests with with high parallelization and stores test results and artifacts to help you ship features faster and troubleshoot easily.
11+
Microsoft Playwright Testing Preview is a fully managed service for end-to-end testing built on top of Playwright. With Playwright, you can automate end-to-end tests to ensure your web applications work the way you expect it to, across different web browsers and operating systems. The service abstracts the complexity and infrastructure for running Playwright tests and managing results and artifacts. The service runs tests with high parallelization and stores test results and artifacts to help you ship features faster and troubleshoot easily.
1212

1313
Run your Playwright test suite in the cloud, without changes to your test code or modifications to your tooling setup. Use the [Playwright Test Visual Studio Code extension](https://marketplace.visualstudio.com/items?itemName=ms-playwright.playwright) for a rich editor experience, or use the Playwright CLI to add automation within your continuous integration (CI) workflow.
1414

articles/playwright-testing/quickstart-automate-end-to-end-testing.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@ After you complete this quickstart, you have a CI workflow that runs your Playwr
2525
- A GitHub account. If you don't have a GitHub account, you can [create one for free](https://github.com/).
2626
- A GitHub repository that contains your Playwright test specifications and GitHub Actions workflow. To create a repository, see [Creating a new repository](https://docs.github.com/github/creating-cloning-and-archiving-repositories/creating-a-new-repository).
2727
- A GitHub Actions workflow. If you need help with getting started with GitHub Actions, see [create your first workflow](https://docs.github.com/en/actions/quickstart)
28-
- Set up authentication from GitHub Actions to Azure. To configure see [Use GitHub Actions to connect to Azure](/azure/developer/github/connect-from-azure)
28+
- Set up authentication from GitHub Actions to Azure. See [Use GitHub Actions to connect to Azure](/azure/developer/github/connect-from-azure)
2929

3030
# [Azure Pipelines](#tab/pipelines)
3131
- An Azure DevOps organization and project. If you don't have an Azure DevOps organization, you can [create one for free](/azure/devops/organizations/projects/create-project).
3232
- A pipeline definition. If you need help with getting started with Azure Pipelines, see [create your first pipeline](/azure/devops/pipelines/create-first-pipeline).
33-
- Azure Resource Manager Service connection to securely authenticate to the service from Azure Dev Ops pipelines, see [Azure Resource Manager service connection](/azure/devops/pipelines/library/connect-to-azure)
33+
- Azure Resource Manager Service connection to securely authenticate to the service from Azure Pipelines, see [Azure Resource Manager service connection](/azure/devops/pipelines/library/connect-to-azure)
3434

3535
---
3636

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,14 +86,15 @@ The service offers two authentication methods: Microsoft Entra ID and Access Tok
8686

8787
Microsoft Entra ID uses your Azure credentials, requiring a sign-in to your Azure account for secure access. Alternatively, you can generate an access token from your Playwright workspace and use it in your setup.
8888

89-
##### Set up authtication using Microsoft Entra ID
89+
##### Set up authentication using Microsoft Entra ID
9090

9191
Microsoft Entra ID is the default and recommended authentication for the service. From your local dev machine, you can use [Azure CLI](/cli/azure/install-azure-cli) to sign-in
9292

9393
```CLI
9494
az login
9595
```
96-
**NOTE**: If you are a part of multiple Microsoft Entra tenants, make sure you sign-in to the tenant where your workspace belongs. You can get the tenant id from Azure portal. See [Find your Microsoft Entra Tenant](/azure/azure-portal/get-subscription-tenant-id#find-your-microsoft-entra-tenant). Once you get the ID, sign-in using the command `az login --tenant <TenantID>`
96+
> [!NOTE]
97+
> If you're a part of multiple Microsoft Entra tenants, make sure you sign-in to the tenant where your workspace belongs. You can get the tenant ID from Azure portal. See [Find your Microsoft Entra Tenant](/azure/azure-portal/get-subscription-tenant-id#find-your-microsoft-entra-tenant). Once you get the ID, sign-in using the command `az login --tenant <TenantID>`
9798
9899
##### Set up authentication using access tokens
99100

0 commit comments

Comments
 (0)