Home
last modified time | relevance | path

Searched refs:assertTextAndValue (Results 1 – 10 of 10) sorted by relevance

/cts/tests/autofillservice/src/android/autofillservice/cts/
DOptionalSaveActivityTest.java18 import static android.autofillservice.cts.Helper.assertTextAndValue;
84 assertTextAndValue(findNodeByResourceId(s, ID_ADDRESS1), "742 Evergreen Terrace"); in testNoAutofillSaveAll()
85 assertTextAndValue(findNodeByResourceId(s, ID_ADDRESS2), "Simpsons House"); in testNoAutofillSaveAll()
86 assertTextAndValue(findNodeByResourceId(s, ID_CITY), "Springfield"); in testNoAutofillSaveAll()
87 assertTextAndValue(findNodeByResourceId(s, ID_FAVORITE_COLOR), "Yellow"); in testNoAutofillSaveAll()
97 assertTextAndValue(findNodeByResourceId(s, ID_ADDRESS1), "742 Evergreen Terrace"); in testNoAutofillSaveRequiredOnly()
98 assertTextAndValue(findNodeByResourceId(s, ID_ADDRESS2), ""); in testNoAutofillSaveRequiredOnly()
99 assertTextAndValue(findNodeByResourceId(s, ID_CITY), "Springfield"); in testNoAutofillSaveRequiredOnly()
100 assertTextAndValue(findNodeByResourceId(s, ID_FAVORITE_COLOR), ""); in testNoAutofillSaveRequiredOnly()
216 assertTextAndValue(findNodeByResourceId(s, ID_ADDRESS1), in testAutofillAllChangedAllSaveAll()
[all …]
DPreFilledLoginActivityTest.java22 import static android.autofillservice.cts.Helper.assertTextAndValue;
86 assertTextAndValue(findNodeByResourceId(fillRequest.structure, ID_USERNAME), in testSanitization()
88 assertTextAndValue(findNodeByResourceId(fillRequest.structure, ID_PASSWORD), "T0p S3cr3t"); in testSanitization()
103 assertTextAndValue(findNodeByResourceId(saveRequest.structure, ID_USERNAME), "malkovich"); in testSanitization()
104 assertTextAndValue(findNodeByResourceId(saveRequest.structure, ID_PASSWORD), "malkovich"); in testSanitization()
DInitializedCheckoutActivityTest.java25 import static android.autofillservice.cts.Helper.assertTextAndValue;
67 assertTextAndValue(findNodeByResourceId(fillRequest.structure, ID_CC_NUMBER), "4815162342"); in testSanitization()
DTimePickerTestCase.java19 import static android.autofillservice.cts.Helper.assertTextAndValue;
98 assertTextAndValue(findNodeByResourceId(saveRequest.structure, ID_OUTPUT), "10:40"); in testAutoFillAndSave()
DDatePickerTestCase.java22 import static android.autofillservice.cts.Helper.assertTextAndValue;
99 assertTextAndValue(findNodeByResourceId(saveRequest.structure, ID_OUTPUT), "2010/11/12"); in testAutoFillAndSave()
DSessionLifecycleTest.java24 import static android.autofillservice.cts.Helper.assertTextAndValue;
189 assertTextAndValue(username, "autofilled username"); in testDatasetAuthResponseWhileAutofilledAppIsLifecycled()
192 assertTextAndValue(password, "new password"); in testDatasetAuthResponseWhileAutofilledAppIsLifecycled()
DVirtualContainerActivityTest.java23 import static android.autofillservice.cts.Helper.assertTextAndValue;
114 assertTextAndValue(usernameLabel, "Username"); in autofillTest()
115 assertTextAndValue(passwordLabel, "Password"); in autofillTest()
DLoginActivityTest.java28 import static android.autofillservice.cts.Helper.assertTextAndValue;
560 assertTextAndValue(username, "dude"); in testAutoFillOneDatasetAndSave()
562 assertTextAndValue(password, "dude"); in testAutoFillOneDatasetAndSave()
665 assertTextAndValue(username, "dude"); in testAutoFillOneDatasetAndSaveHidingOverlays()
667 assertTextAndValue(password, "dude"); in testAutoFillOneDatasetAndSaveHidingOverlays()
1167 assertTextAndValue(username, "malkovich"); in saveOnlyTest()
1169 assertTextAndValue(password, "malkovich"); in saveOnlyTest()
1303 assertTextAndValue(username, "user_after"); in saveOnlyTestPreFilled()
1305 assertTextAndValue(password, "pass_after"); in saveOnlyTestPreFilled()
1352 assertTextAndValue(username, "I_AM_USER"); in testSaveOnlyTwoRequiredFieldsOnePrefilled()
[all …]
DCheckoutActivityTest.java29 import static android.autofillservice.cts.Helper.assertTextAndValue;
236 assertTextAndValue(findNodeByResourceId(saveRequest.structure, ID_CC_NUMBER), "4815162342"); in testSanitization()
DHelper.java374 static void assertTextAndValue(ViewNode node, String expectedValue) { in assertTextAndValue() method in Helper
381 static ViewNode assertTextAndValue(AssistStructure structure, String resourceId, in assertTextAndValue() method in Helper
384 assertTextAndValue(node, expectedValue); in assertTextAndValue()