Home
last modified time | relevance | path

Searched refs:uiBot (Results 1 – 11 of 11) sorted by relevance

/cts/tests/autofillservice/src/android/autofillservice/cts/activities/
DWebViewMultiScreenLoginActivity.java69 public MyWebView loadWebView(UiBot uiBot) throws Exception { in loadWebView() argument
124 mUsernameLabel = uiBot.assertShownByText("Username: ", WEBVIEW_TIMEOUT); in loadWebView()
126 mUsernameInput = getInput(uiBot, mUsernameLabel); in loadWebView()
127 mNextButton = uiBot.findRightAwayByText("Next"); in loadWebView()
132 public void waitForPasswordScreen(UiBot uiBot) throws Exception { in waitForPasswordScreen() argument
146 mPasswordLabel = uiBot.assertShownByText("Password: ", WEBVIEW_TIMEOUT); in waitForPasswordScreen()
148 mPasswordInput = getInput(uiBot, mPasswordLabel); in waitForPasswordScreen()
149 mLoginButton = uiBot.findRightAwayByText("Login"); in waitForPasswordScreen()
DWebViewActivity.java77 public MyWebView loadWebView(UiBot uiBot) throws Exception { in loadWebView() argument
78 return loadWebView(uiBot, false); in loadWebView()
81 public MyWebView loadWebView(UiBot uiBot, boolean usingAppContext) throws Exception { in loadWebView() argument
137 mUsernameLabel = uiBot.assertShownByText("Username: ", WEBVIEW_TIMEOUT); in loadWebView()
139 mUsernameInput = getInput(uiBot, mUsernameLabel); in loadWebView()
140 mPasswordLabel = uiBot.findRightAwayByText("Password: "); in loadWebView()
141 mPasswordInput = getInput(uiBot, mPasswordLabel); in loadWebView()
142 mLoginButton = uiBot.findRightAwayByText("Login"); in loadWebView()
DAbstractWebViewActivity.java33 protected UiObject2 getInput(UiBot uiBot, UiObject2 label) throws Exception { in getInput() argument
42 uiBot.dumpScreen("getInput() for " + child + "failed"); in getInput()
47 uiBot.dumpScreen("getInput() for label " + label + "failed"); in getInput()
DWelcomeActivity.java99 public static void assertShowingDefaultMessage(UiBot uiBot) throws Exception { in assertShowingDefaultMessage() argument
100 assertShowing(uiBot, null); in assertShowingDefaultMessage()
104 public static void assertShowing(UiBot uiBot, @Nullable String expectedMessage) in assertShowing() argument
106 final UiObject2 activity = uiBot.assertShownByRelativeId(ID_WELCOME); in assertShowing()
DSecondActivity.java70 public static void assertShowingDefaultMessage(UiBot uiBot) throws Exception { in assertShowingDefaultMessage() argument
71 final UiObject2 activity = uiBot.assertShownByRelativeId(ID_WELCOME); in assertShowingDefaultMessage()
DViewActionActivity.java112 public static void assertShowingDefaultMessage(UiBot uiBot) throws Exception { in assertShowingDefaultMessage() argument
113 final UiObject2 activity = uiBot.assertShownByRelativeId(ID_WELCOME); in assertShowingDefaultMessage()
DDialogLauncherActivity.java60 public void launchDialog(UiBot uiBot) throws Exception { in launchDialog() argument
63 uiBot.assertShownByText("Username"); in launchDialog()
/cts/tests/autofillservice/src/android/autofillservice/cts/commontests/
DAutoFillServiceTestCase.java126 protected AutoActivityLaunch(UiBot uiBot) { in AutoActivityLaunch() argument
127 super(uiBot); in AutoActivityLaunch()
167 protected ManualActivityLaunch(@NonNull UiBot uiBot) { in ManualActivityLaunch() argument
168 super(uiBot); in ManualActivityLaunch()
295 private BaseTestCase(@NonNull UiBot uiBot) {
297 mUiBot = uiBot;
DAugmentedAutofillAutoActivityLaunchTestCase.java61 public AugmentedAutofillAutoActivityLaunchTestCase(UiBot uiBot) { in AugmentedAutofillAutoActivityLaunchTestCase() argument
62 super(uiBot); in AugmentedAutofillAutoActivityLaunchTestCase()
/cts/tests/autofillservice/src/android/autofillservice/cts/testcore/
DAugmentedUiBot.java43 public AugmentedUiBot(@NonNull UiBot uiBot) { in AugmentedUiBot() argument
44 mUiBot = uiBot; in AugmentedUiBot()
DHelper.java839 public static void disableAutoRotation(UiBot uiBot) throws Exception { in disableAutoRotation() argument
841 uiBot.setScreenOrientation(PORTRAIT); in disableAutoRotation()