From 8e9540b7c173fb36b66e6d0211b27ac622af0677 Mon Sep 17 00:00:00 2001 From: Debbie O'Brien Date: Fri, 28 Oct 2022 17:54:21 +0200 Subject: [PATCH] docs: remove selectors from getting started (#18403) --- docs/src/writing-tests-csharp.md | 11 ++--------- docs/src/writing-tests-js.md | 12 ++---------- docs/src/writing-tests-python.md | 14 ++------------ 3 files changed, 6 insertions(+), 31 deletions(-) diff --git a/docs/src/writing-tests-csharp.md b/docs/src/writing-tests-csharp.md index 15ea98e220..dc9f58a9a7 100644 --- a/docs/src/writing-tests-csharp.md +++ b/docs/src/writing-tests-csharp.md @@ -5,7 +5,7 @@ title: "Writing Tests" 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. -Take a look at the example test below to see how to write a test using web first assertions, locators and selectors. +Take a look at the example test below to see how to write a test using using [locators](/locators.md) and web first assertions.