2022-07-19 00:39:01 +03:00
---
id: writing-tests
title: "Writing Tests"
---
2022-07-21 01:57:09 +03:00
Playwright assertions are created specifically for the dynamic web. Checks are automatically retried until the necessary conditions are met. Playwright comes with [auto-wait ](./actionability.md ) built in meaning it waits for elements to be actionable prior to performing actions. Playwright provides the [Expect ](./test-assertions ) function to write assertions.
2022-07-19 00:39:01 +03:00
2022-07-21 01:57:09 +03:00
Take a look at the example test below to see how to write a test using web first assertions, locators and selectors.
2022-07-19 00:39:01 +03:00
< Tabs
2022-08-03 14:39:18 +03:00
groupId="test-runners"
2022-07-19 00:39:01 +03:00
defaultValue="nunit"
values={[
{label: 'NUnit', value: 'nunit'},
{label: 'MSTest', value: 'mstest'}
]
}>
< TabItem value = "nunit" >
```csharp
using System.Text.RegularExpressions;
using Microsoft.Playwright.NUnit;
namespace PlaywrightTests;
[Parallelizable(ParallelScope.Self)]
public class Tests : PageTest
{
[Test]
2022-08-07 16:04:08 +03:00
public async Task HomepageHasPlaywrightInTitleAndGetStartedLinkLinkingtoTheIntroPage()
2022-07-19 00:39:01 +03:00
{
await Page.GotoAsync("https://playwright.dev");
// Expect a title "to contain" a substring.
await Expect(Page).ToHaveTitleAsync(new Regex("Playwright"));
// create a locator
var getStarted = Page.Locator("text=Get Started");
// Expect an attribute "to be strictly equal" to the value.
await Expect(getStarted).ToHaveAttributeAsync("href", "/docs/intro");
// Click the get started link.
await getStarted.ClickAsync();
// Expects the URL to contain intro.
await Expect(Page).ToHaveURLAsync(new Regex(".*intro"));
}
}
```
< / TabItem >
< TabItem value = "mstest" >
```csharp
using System.Text.RegularExpressions;
using Microsoft.Playwright.MSTest;
namespace PlaywrightTests;
public class UnitTest1 : PageTest
{
[TestMethod]
2022-08-07 16:04:08 +03:00
public async Task HomepageHasPlaywrightInTitleAndGetStartedLinkLinkingtoTheIntroPage()
2022-07-19 00:39:01 +03:00
{
await Page.GotoAsync("https://playwright.dev");
// Expect a title "to contain" a substring.
await Expect(Page).ToHaveTitleAsync(new Regex("Playwright"));
// create a locator
var getStarted = Page.Locator("text=Get Started");
// Expect an attribute "to be strictly equal" to the value.
await Expect(getStarted).ToHaveAttributeAsync("href", "/docs/intro");
// Click the get started link.
await getStarted.ClickAsync();
// Expects the URL to contain intro.
await Expect(Page).ToHaveURLAsync(new Regex(".*intro"));
}
}
```
< / TabItem >
< / Tabs >
### Assertions
Playwright provides an async function called [Expect ](./test-assertions ) to assert and wait until the expected condition is met.
```csharp
await Expect(Page).ToHaveTitleAsync(new Regex("Playwright"));
```
### Locators
2022-07-21 01:57:09 +03:00
[Locators ](./locators.md ) are the central piece of Playwright's auto-waiting and retry-ability. Locators represent a way to find element(s) on the page at any moment and are used to perform actions on elements such as `.ClickAsync` `.FillAsync` etc. Custom locators can be created with the [`method: Page.locator`] method.
2022-07-19 00:39:01 +03:00
```csharp
var getStarted = Page.Locator("text=Get Started");
await Expect(getStarted).ToHaveAttributeAsync("href", "/docs/installation");
await getStarted.ClickAsync();
```
2022-08-17 08:00:54 +03:00
[Selectors ](./selectors.md ) are strings that are used to create Locators. Playwright supports many different selectors like [Text ](./selectors.md#text-selector ), [CSS ](./selectors.md#css-selector ), [XPath ](./selectors.md#xpath-selectors ) and many more. Learn more about available selectors and how to pick one in this [in-depth guide ](./selectors.md ).
2022-07-19 00:39:01 +03:00
```csharp
await Expect(Page.Locator("text=Installation")).ToBeVisibleAsync();
```
### Test Isolation
The Playwright NUnit and MSTest test framework base classes will isolate each test from each other by providing a separate `Page` instance. Pages are isolated between tests due to the Browser Context, which is equivalent to a brand new browser profile, where every test gets a fresh environment, even when multiple tests run in a single Browser.
< Tabs
2022-08-03 14:39:18 +03:00
groupId="test-runners"
2022-07-19 00:39:01 +03:00
defaultValue="nunit"
values={[
{label: 'NUnit', value: 'nunit'},
{label: 'MSTest', value: 'mstest'}
]
}>
< TabItem value = "nunit" >
```csharp
using System.Threading.Tasks;
using Microsoft.Playwright.NUnit;
using NUnit.Framework;
namespace PlaywrightTests;
[Parallelizable(ParallelScope.Self)]
public class Tests : PageTest
{
[Test]
public async Task BasicTest()
{
await Page.GotoAsync("https://playwright.dev");
}
}
```
< / TabItem >
< TabItem value = "mstest" >
```csharp
using Microsoft.Playwright.MSTest;
namespace PlaywrightTests;
public class UnitTest1 : PageTest
{
[TestMethod]
public async Task BasicTest()
{
await Page.GotoAsync("https://playwright.dev");
}
}
```
< / TabItem >
< / Tabs >
### Using Test Hooks
You can use `SetUp` /`TearDown` in NUnit or `TestInitialize` /`TestCleanup` in MSTest to prepare and clean up your test environment:
< Tabs
2022-08-03 14:39:18 +03:00
groupId="test-runners"
2022-07-19 00:39:01 +03:00
defaultValue="nunit"
values={[
{label: 'NUnit', value: 'nunit'},
{label: 'MSTest', value: 'mstest'}
]
}>
< TabItem value = "nunit" >
```csharp
using System.Threading.Tasks;
using Microsoft.Playwright.NUnit;
using NUnit.Framework;
namespace PlaywrightTests;
[Parallelizable(ParallelScope.Self)]
public class Tests : PageTest
{
[Test]
public async Task MainNavigation()
{
// Assertions use the expect API.
await Expect(Page).ToHaveURLAsync("https://playwright.dev/");
}
[SetUp]
public async Task SetUp()
{
await Page.GotoAsync("https://playwright.dev");
}
}
```
< / TabItem >
< TabItem value = "mstest" >
```csharp
using Microsoft.Playwright.MSTest;
namespace PlaywrightTests;
public class UnitTest1 : PageTest
{
[TestMethod]
public async Task MainNavigation()
{
// Assertions use the expect API.
await Expect(Page).ToHaveURLAsync("https://playwright.dev/");
}
[TestInitialize]
public async Task TestInitialize()
{
await Page.GotoAsync("https://playwright.dev");
}
}
```
< / TabItem >
< / Tabs >
## What's Next
- [Run single tests, multiple tests, headed mode ](./running-tests.md )
- [Generate tests with Codegen ](./codegen.md )
2022-08-10 15:34:27 +03:00
- [See a trace of your tests ](./trace-viewer-intro.md )