Home
last modified time | relevance | path

Searched refs:ID_PASSWORD_LABEL (Results 1 – 9 of 9) sorted by relevance

/cts/tests/autofillservice/src/android/autofillservice/cts/
DPreFilledLoginActivityTest.java19 import static android.autofillservice.cts.Helper.ID_PASSWORD_LABEL;
78 assertTextFromResouces(fillRequest.structure, ID_PASSWORD_LABEL, "DA PASSWORD", false,
97 assertTextFromResouces(saveRequest.structure, ID_PASSWORD_LABEL, "DA PASSWORD", false,
DLoginWithStringsActivityTest.java20 import static android.autofillservice.cts.Helper.ID_PASSWORD_LABEL;
97 assertTextFromResouces(fillRequest.structure, ID_PASSWORD_LABEL, "Password", false,
135 assertTextFromResouces(saveRequest.structure, ID_PASSWORD_LABEL, "Password", false,
DVirtualContainerActivity.java19 import static android.autofillservice.cts.Helper.ID_PASSWORD_LABEL;
67 mPassword = mCustomView.addLine(ID_PASSWORD_LABEL, "Password", ID_PASSWORD, BLANK_VALUE, in onCreate()
DOnClickActionTest.java25 import static android.autofillservice.cts.Helper.ID_PASSWORD_LABEL;
158 mUiBot.assertChildText(saveUi, ID_PASSWORD_LABEL, "Pass:");
178 mUiBot.assertChildText(saveUi, ID_PASSWORD_LABEL, "Pass:");
DWebViewMultiScreenLoginActivityTest.java22 import static android.autofillservice.cts.Helper.ID_PASSWORD_LABEL;
179 mUiBot.assertChildText(saveUi2, ID_PASSWORD_LABEL, "Pass:");
281 mUiBot.assertChildText(saveUi, ID_PASSWORD_LABEL, "Pass:");
DMultiScreenLoginTest.java20 import static android.autofillservice.cts.Helper.ID_PASSWORD_LABEL;
414 mUiBot.assertChildText(saveUi, ID_PASSWORD_LABEL, "Pass:");
DVirtualContainerActivityTest.java20 import static android.autofillservice.cts.Helper.ID_PASSWORD_LABEL;
195 final ViewNode passwordLabel = findNodeByResourceId(request.structure, ID_PASSWORD_LABEL); in autofillTest()
DLoginActivityTest.java25 import static android.autofillservice.cts.Helper.ID_PASSWORD_LABEL;
982 assertTextOnly(fillRequest.structure, ID_PASSWORD_LABEL, "Password"); in testAutoFillOneDatasetAndSave()
1016 assertTextOnly(saveRequest.structure, ID_PASSWORD_LABEL, "Password"); in testAutoFillOneDatasetAndSave()
2026 final ViewNode label = findNodeByResourceId(fillRequest.structure, ID_PASSWORD_LABEL); in testGetTextInputType()
DHelper.java94 public static final String ID_PASSWORD_LABEL = "password_label"; field in Helper