From 311d82ed571e8be8e087a230e52061b4a72a708e Mon Sep 17 00:00:00 2001 From: Leo Natan Date: Tue, 4 Feb 2020 16:40:31 +0200 Subject: [PATCH] Update APIRef.Matchers.md --- docs/APIRef.Matchers.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/APIRef.Matchers.md b/docs/APIRef.Matchers.md index d40abe4946..4b6db2f38a 100644 --- a/docs/APIRef.Matchers.md +++ b/docs/APIRef.Matchers.md @@ -11,7 +11,7 @@ Matchers find elements in your app that match one or more properties. - [`by.id()`](#byidid) - [`by.label()`](#bylabellabel) -- [`by.text()`](#bytexttext-limited-on-ios) +- [`by.text()`](#bytexttext-discouraged-on-ios) - [`by.type()`](#bytypenativeviewtype) - [`by.traits()`](#bytraitstraits) - [Advanced](#advanced) @@ -43,7 +43,7 @@ Find an element by `accessibilityLabel` on iOS, or by `contentDescription` on An element(by.label('Welcome')); ``` -#### `by.text(text)` (**Limited on iOS**) +#### `by.text(text)` (**Discouraged on iOS**) Find an element by text, useful for text fields, buttons. ```js