Searched refs:findNodeByHtmlName (Results 1 – 4 of 4) sorted by relevance
/cts/tests/autofillservice/src/android/autofillservice/cts/ |
D | WebViewActivityTest.java | 147 Helper.findNodeByHtmlName(fillRequest.structure, HTML_NAME_USERNAME); 157 Helper.findNodeByHtmlName(fillRequest.structure, HTML_NAME_PASSWORD); 210 final ViewNode usernameNode = Helper.findNodeByHtmlName(saveRequest.structure, 212 final ViewNode passwordNode = Helper.findNodeByHtmlName(saveRequest.structure, 251 final ViewNode usernameNode = Helper.findNodeByHtmlName(fillRequest.structure, 256 final ViewNode passwordNode = Helper.findNodeByHtmlName(fillRequest.structure, 284 final ViewNode usernameNode2 = Helper.findNodeByHtmlName(saveRequest.structure, 286 final ViewNode passwordNode2 = Helper.findNodeByHtmlName(saveRequest.structure, 336 final ViewNode usernameFillNode = Helper.findNodeByHtmlName(fillRequest.structure, 341 final ViewNode passwordFillNode = Helper.findNodeByHtmlName(fillRequest.structure, [all …]
|
D | WebViewMultiScreenLoginActivityTest.java | 26 import static android.autofillservice.cts.Helper.findNodeByHtmlName; 138 assertTextAndValue(findNodeByHtmlName(saveRequest1.structure, HTML_NAME_USERNAME), "dude"); 186 assertTextAndValue(findNodeByHtmlName(saveRequest2.structure, HTML_NAME_PASSWORD), "sweet"); 293 assertTextAndValue(findNodeByHtmlName(previousStructure, HTML_NAME_USERNAME), "dude"); 300 assertTextAndValue(findNodeByHtmlName(currentStructure, HTML_NAME_PASSWORD), "sweet");
|
D | Helper.java | 369 public static ViewNode findNodeByHtmlName(AssistStructure structure, String htmlName) { in findNodeByHtmlName() method in Helper 376 public static ViewNode findNodeByHtmlName(List<FillContext> contexts, String htmlName) { in findNodeByHtmlName() method in Helper 383 public static ViewNode findNodeByHtmlName(ViewNode node, String htmlName) { in findNodeByHtmlName() method in Helper
|
D | InstrumentedAutoFillService.java | 663 (name) -> Helper.findNodeByHtmlName(contexts, name)); in onFillRequest()
|