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.java70 public MyWebView loadWebView(UiBot uiBot) throws Exception { in loadWebView() argument
125 mUsernameLabel = uiBot.assertShownByText("Username: ", WEBVIEW_TIMEOUT); in loadWebView()
127 mUsernameInput = getInput(uiBot, mUsernameLabel); in loadWebView()
128 mNextButton = uiBot.findRightAwayByText("Next"); in loadWebView()
133 public void waitForPasswordScreen(UiBot uiBot) throws Exception { in waitForPasswordScreen() argument
147 mPasswordLabel = uiBot.assertShownByText("Password: ", WEBVIEW_TIMEOUT); in waitForPasswordScreen()
149 mPasswordInput = getInput(uiBot, mPasswordLabel); in waitForPasswordScreen()
150 mLoginButton = uiBot.findRightAwayByText("Login"); in waitForPasswordScreen()
DWebViewActivity.java80 public MyWebView loadWebView(UiBot uiBot) throws Exception { in loadWebView() argument
81 return loadWebView(uiBot, false); in loadWebView()
84 public MyWebView loadWebView(UiBot uiBot, boolean usingAppContext) throws Exception { in loadWebView() argument
140 mUsernameLabel = uiBot.assertShownByText("Username: ", WEBVIEW_TIMEOUT); in loadWebView()
142 mUsernameInput = getInput(uiBot, mUsernameLabel); in loadWebView()
143 mPasswordLabel = uiBot.findRightAwayByText("Password: "); in loadWebView()
144 mPasswordInput = getInput(uiBot, mPasswordLabel); in loadWebView()
145 mLoginButton = uiBot.findRightAwayByText("Login"); in loadWebView()
DAbstractWebViewActivity.java34 protected UiObject2 getInput(UiBot uiBot, UiObject2 label) throws Exception { in getInput() argument
43 uiBot.dumpScreen("getInput() for " + child + "failed"); in getInput()
48 uiBot.dumpScreen("getInput() for label " + label + "failed"); in getInput()
DWelcomeActivity.java100 public static void assertShowingDefaultMessage(UiBot uiBot) throws Exception { in assertShowingDefaultMessage() argument
101 assertShowing(uiBot, null); in assertShowingDefaultMessage()
105 public static void assertShowing(UiBot uiBot, @Nullable String expectedMessage) in assertShowing() argument
107 final UiObject2 activity = uiBot.assertShownByRelativeId(ID_WELCOME); in assertShowing()
DSecondActivity.java71 public static void assertShowingDefaultMessage(UiBot uiBot) throws Exception { in assertShowingDefaultMessage() argument
72 final UiObject2 activity = uiBot.assertShownByRelativeId(ID_WELCOME); in assertShowingDefaultMessage()
DViewActionActivity.java113 public static void assertShowingDefaultMessage(UiBot uiBot) throws Exception { in assertShowingDefaultMessage() argument
114 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/testcore/
DAugmentedUiBot.java43 public AugmentedUiBot(@NonNull UiBot uiBot) { in AugmentedUiBot() argument
44 mUiBot = uiBot; in AugmentedUiBot()
DHelper.java863 public static void disableAutoRotation(UiBot uiBot) throws Exception { in disableAutoRotation() argument
865 uiBot.setScreenOrientation(PORTRAIT); in disableAutoRotation()
/cts/tests/autofillservice/src/android/autofillservice/cts/commontests/
DAugmentedAutofillAutoActivityLaunchTestCase.java61 public AugmentedAutofillAutoActivityLaunchTestCase(UiBot uiBot) { in AugmentedAutofillAutoActivityLaunchTestCase() argument
62 super(uiBot); in AugmentedAutofillAutoActivityLaunchTestCase()
DAutoFillServiceTestCase.java134 protected AutoActivityLaunch(UiBot uiBot) { in AutoActivityLaunch() argument
135 super(uiBot); in AutoActivityLaunch()
177 protected ManualActivityLaunch(@NonNull UiBot uiBot) { in ManualActivityLaunch() argument
178 super(uiBot); in ManualActivityLaunch()
423 private BaseTestCase(@NonNull UiBot uiBot) {
425 mUiBot = uiBot;