From bb90ab1471c1077493265ea49910b54aa2ff9846 Mon Sep 17 00:00:00 2001 From: Ross Wollman Date: Mon, 28 Mar 2022 14:16:33 -0700 Subject: [PATCH] docs: use case-sensitive keyword (#13136) --- docs/src/selectors.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/selectors.md b/docs/src/selectors.md index b68971de9d..bb7de8d012 100644 --- a/docs/src/selectors.md +++ b/docs/src/selectors.md @@ -254,7 +254,7 @@ Text selector has a few variations: await page.Locator("text=Log in").ClickAsync(); ``` -- `text="Log in"` - text body can be escaped with single or double quotes to search for a text node with exact content. For example, `text="Log"` does not match `` because ``, because `` because ``, because ``. Quoted body follows the usual escaping rules, e.g. use `\"` to escape double quote in a double-quoted string: `text="foo\"bar"`.