From f760cfa5553724d6240242f9a213cd442d657a39 Mon Sep 17 00:00:00 2001 From: Bartek Pacia Date: Mon, 27 Nov 2023 19:47:08 +0100 Subject: [PATCH] semantics.dart: update comment about `identifier` --- lib/ui/semantics.dart | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/lib/ui/semantics.dart b/lib/ui/semantics.dart index bde067498c0a6..ef2a77d440f02 100644 --- a/lib/ui/semantics.dart +++ b/lib/ui/semantics.dart @@ -730,8 +730,9 @@ abstract class SemanticsUpdateBuilder { /// [PlatformDispatcher.onSemanticsActionEvent] callback might be called with /// an action that is no longer possible. /// - /// The `identifier` is a string that describes the node for UI automation. - /// It's not exposed to users. + /// The `identifier` is a string that describes the node for UI automation + /// tools that work by querying the accessibility hierarchy, such as Android + /// UI Automator, iOS XCUITest, or Appium. It's not exposed to users. /// /// The `label` is a string that describes this node. The `value` property /// describes the current value of the node as a string. The `increasedValue` @@ -1068,8 +1069,9 @@ abstract class SemanticsUpdateBuilderNew { /// [PlatformDispatcher.onSemanticsActionEvent] callback might be called with /// an action that is no longer possible. /// - /// The `identifier` is a string that describes the node for UI automation. - /// It's not exposed to users. + /// The `identifier` is a string that describes the node for UI automation + /// tools that work by querying the accessibility hierarchy, such as Android + /// UI Automator, iOS XCUITest, or Appium. It's not exposed to users. /// /// The `label` is a string that describes this node. The `value` property /// describes the current value of the node as a string. The `increasedValue`