Skip to content

Commit 95a9c82

Browse files
committed
fixed acrolinx issues
1 parent f0eea08 commit 95a9c82

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

articles/playwright-testing/how-to-manage-authentication.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ ms.custom: playwright-testing-preview
88

99
# Manage authentication and authorization for Microsoft Playwright Testing preview
1010

11-
In this article, you learn how to manage authentication and authorization for Microsoft Playwright Testing preview to run Playwright tests on cloud-hosted browsers and to publish test results and artifacts to the service.
11+
In this article, you learn how to manage authentication and authorization for Microsoft Playwright Testing preview. Authentication is required to run Playwright tests on cloud-hosted browsers and to publish test results and artifacts to the service.
1212

13-
By default, [Microsoft Entra ID](/entra/identity/) is used for authentication. This method is more secure and is the recommended authentication method. You cannot disable authentication using Microsoft Entra ID. However, you can also use access tokens to authenticate and authorize.
13+
By default, [Microsoft Entra ID](/entra/identity/) is used for authentication. This method is more secure and is the recommended authentication method. You can't disable authentication using Microsoft Entra ID. However, you can also use access tokens to authenticate and authorize.
1414

1515

1616
> [!IMPORTANT]
@@ -31,7 +31,7 @@ Microsoft Playwright Testing service also supports authentication using access t
3131
> [!CAUTION]
3232
> Your workspace access tokens are similar to a password for your Microsoft Playwright Testing workspace. Always be careful to protect your access tokens. Avoid distributing access tokens to other users, hard-coding them, or saving them anywhere in plain text that is accessible to others.
3333
34-
Revoke and recreate your tokens if you believe they may have been compromised.
34+
Revoke and recreate your tokens if you believe they are compromised.
3535

3636
To enable authentication using access tokens:
3737

articles/playwright-testing/how-to-try-playwright-testing-free.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.custom: playwright-testing-preview
88

99
# Try Microsoft Playwright Testing Preview for free
1010

11-
Microsoft Playwright Testing Preview is a fully managed service for end-to-end testing built on top of Playwright. With the free trial, you can try Microsoft Playwright Testing for free for 30 days, 100 test minutes, and 1000 test results. In this article, you learn about the limits of the free trial, how to get started, and how to track your free trial usage.
11+
Microsoft Playwright Testing Preview is a fully managed service for end-to-end testing built on top of Playwright. With the free trial, you can try Microsoft Playwright Testing for free for 30 days, 100 test minutes, and 1,000 test results. In this article, you learn about the limits of the free trial, how to get started, and how to track your free trial usage.
1212

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/).
@@ -26,10 +26,10 @@ The following table lists the limits for the Microsoft Playwright Testing free t
2626
|-|-|
2727
| Duration of trial | 30 days |
2828
| Total test minutes¹ | 100 minutes |
29-
| Total test results¹ | 1000 results |
29+
| Total test results¹ | 1,000 results |
3030
| Number of workspaces²³ | 1 |
3131

32-
¹ If your usage exceeds either the free test minute limit or the free test result limit, only the overage counts toward the pay-as-you-go billing model. The two features are billed separately, see [Microsoft Playwright Testing preview pricing](https://aka.ms/mpt/pricing)
32+
¹ If your usage exceeds either the free test minute limit or the free test result limit, only the overage counts toward the pay-as-you-go billing model. The two features are billed separately. See [Microsoft Playwright Testing preview pricing](https://aka.ms/mpt/pricing)
3333

3434
² These limits only apply to the *first* workspace you create in your Azure subscription. Any subsequent workspaces you create in the subscription automatically uses the pay-as-you-go billing model.
3535

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ export default defineConfig(
5353
- **Description**: This setting allows you to choose the authentication method you want to use for your test run.
5454
- **Available Options**:
5555
- `TOKEN` to use access tokens. You need to enable authtication 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. This is the default mode.
56+
- `ENTRA` to use Enrta ID for authentication. It is the default mode.
5757
- **Default Value**: `ENTRA_ID`
5858
- **Example**:
5959
```typescript
@@ -62,7 +62,7 @@ export default defineConfig(
6262

6363

6464
* **`os`**:
65-
- **Description**: This setting allows you to choose the operating system where the browsers running Playwright tests will be hosted.
65+
- **Description**: This setting allows you to choose the operating system where the browsers running Playwright tests are hosted.
6666
- **Available Options**:
6767
- `ServiceOS.WINDOWS` for Windows OS.
6868
- `ServiceOS.LINUX` for Linux OS.
@@ -87,15 +87,15 @@ export default defineConfig(
8787
```
8888

8989
* **`useCloudHostedBrowsers`**
90-
- **Description**: This setting allows you to choose whether to use cloud-hosted browsers or the browsers on your client machine to run your Playwright tests. If you disable this option, your tests will run on the browsers of your client machine instead of cloud-hosted browsers, and you will not incur any charges.
90+
- **Description**: This setting allows you to choose whether to use cloud-hosted browsers or the browsers on your client machine to run your Playwright tests. If you disable this option, your tests run on the browsers of your client machine instead of cloud-hosted browsers, and you do not incur any charges.
9191
- **Default Value**: true
9292
- **Example**:
9393
```typescript
9494
useCloudHostedBrowsers: true
9595
```
9696

9797
* **`exposeNetwork`**
98-
- **Description**: This setting allows you to connect to local resources from your Playwright test code without having to configure additional firewall settings. To learn more, see [how to test local applications](./how-to-test-local-applications.md)
98+
- **Description**: This setting allows you to connect to local resources from your Playwright test code without having to configure another firewall settings. To learn more, see [how to test local applications](./how-to-test-local-applications.md)
9999
- **Example**:
100100
```typescript
101101
exposeNetwork: '<loopback>'
@@ -109,7 +109,7 @@ export default defineConfig(
109109
```
110110

111111
* **`reporter`**
112-
- **Description**: The `playwright.service.config.ts` file extends the playwright config file of your setup. This option overrides the existing reporters and sets Microsoft Playwright Testing reporter. You can add or modify this list to include the reporters that you want to use. You will be billed for Microsoft Playwright Testing reporting if you add `@azure/microsoft-playwright-testing/reporter`.
112+
- **Description**: The `playwright.service.config.ts` file extends the playwright config file of your setup. This option overrides the existing reporters and sets Microsoft Playwright Testing reporter. You can add or modify this list to include the reporters that you want to use. You are billed for Microsoft Playwright Testing reporting if you add `@azure/microsoft-playwright-testing/reporter`.
113113
- **Default Value**: ["@azure/microsoft-playwright-testing/reporter"]
114114
- **Example**:
115115
```typescript

articles/playwright-testing/how-to-use-service-features.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Microsoft Playwright Testing features
3-
description: Learn how to use different features offered by Microaoft Playwright Testing service
3+
description: Learn how to use different features offered by Microsoft Playwright Testing service
44
ms.topic: how-to
55
ms.date: 09/07/2024
66
ms.custom: playwright-testing-preview
@@ -71,14 +71,14 @@ export default defineConfig(
7171
);
7272
```
7373
- **`useCloudHostedBrowsers`**:
74-
- **Description**: This setting allows you to choose whether to use cloud-hosted browsers or the browsers on your client machine to run your Playwright tests. If you disable this option, your tests will run on the browsers of your client machine instead of cloud-hosted browsers, and you will not incur any charges. You can still configure reporting options.
74+
- **Description**: This setting allows you to choose whether to use cloud-hosted browsers or the browsers on your client machine to run your Playwright tests. If you disable this option, your tests run on the browsers of your client machine instead of cloud-hosted browsers, and you do not incur any charges. You can still configure reporting options.
7575
- **Default Value**: true
7676
- **Example**:
7777
```typescript
7878
useCloudHostedBrowsers: true
7979
```
8080
- **`reporter`**
81-
- **Description**: The `playwright.service.config.ts` file extends the Playwright configuration file of your setup. This option overrides the existing reporters and sets the Microsoft Playwright Testing reporter. You can add or modify this list to include the reporters you want to use. You will be billed for Microsoft Playwright Testing reporting if you add `@azure/microsoft-playwright-testing/reporter`. This can be used independently of cloud-hosted browsers, meaning you dont have to run tests on service-managed browsers to get reports and artifacts on the Playwright portal.
81+
- **Description**: The `playwright.service.config.ts` file extends the Playwright configuration file of your setup. This option overrides the existing reporters and sets the Microsoft Playwright Testing reporter. You can add or modify this list to include the reporters you want to use. You are billed for Microsoft Playwright Testing reporting if you add `@azure/microsoft-playwright-testing/reporter`. This feature can be used independently of cloud-hosted browsers, meaning you dont have to run tests on service-managed browsers to get reports and artifacts on the Playwright portal.
8282
- **Default Value**: ["@azure/microsoft-playwright-testing/reporter"]
8383
- **Example**:
8484
```typescript

0 commit comments

Comments
 (0)