Searched refs:uiBot (Results 1 – 8 of 8) sorted by relevance
/cts/tests/autofillservice/src/android/autofillservice/cts/ |
D | WebViewMultiScreenLoginActivity.java | 67 public MyWebView loadWebView(UiBot uiBot) throws Exception { in loadWebView() argument 122 mUsernameLabel = uiBot.assertShownByText("Username: ", WEBVIEW_TIMEOUT); in loadWebView() 124 mUsernameInput = getInput(uiBot, mUsernameLabel); in loadWebView() 125 mNextButton = uiBot.findRightAwayByText("Next"); in loadWebView() 130 void waitForPasswordScreen(UiBot uiBot) throws Exception { in waitForPasswordScreen() argument 144 mPasswordLabel = uiBot.assertShownByText("Password: ", WEBVIEW_TIMEOUT); in waitForPasswordScreen() 146 mPasswordInput = getInput(uiBot, mPasswordLabel); in waitForPasswordScreen() 147 mLoginButton = uiBot.findRightAwayByText("Login"); in waitForPasswordScreen()
|
D | WebViewActivity.java | 74 public MyWebView loadWebView(UiBot uiBot) throws Exception { in loadWebView() argument 75 return loadWebView(uiBot, false); in loadWebView() 78 public MyWebView loadWebView(UiBot uiBot, boolean usingAppContext) throws Exception { in loadWebView() argument 134 mUsernameLabel = uiBot.assertShownByText("Username: ", WEBVIEW_TIMEOUT); in loadWebView() 136 mUsernameInput = getInput(uiBot, mUsernameLabel); in loadWebView() 137 mPasswordLabel = uiBot.findRightAwayByText("Password: "); in loadWebView() 138 mPasswordInput = getInput(uiBot, mPasswordLabel); in loadWebView() 139 mLoginButton = uiBot.findRightAwayByText("Login"); in loadWebView()
|
D | WelcomeActivity.java | 97 static void assertShowingDefaultMessage(UiBot uiBot) throws Exception { in assertShowingDefaultMessage() argument 98 assertShowing(uiBot, null); in assertShowingDefaultMessage() 102 static void assertShowing(UiBot uiBot, @Nullable String expectedMessage) throws Exception { in assertShowing() argument 103 final UiObject2 activity = uiBot.assertShownByRelativeId(ID_WELCOME); in assertShowing()
|
D | AbstractWebViewActivity.java | 32 protected UiObject2 getInput(UiBot uiBot, UiObject2 label) throws Exception { in getInput() argument 41 uiBot.dumpScreen("getInput() for " + child + "failed"); in getInput() 46 uiBot.dumpScreen("getInput() for label " + label + "failed"); in getInput()
|
D | AutoFillServiceTestCase.java | 132 protected ManualActivityLaunch(@NonNull UiBot uiBot) { in ManualActivityLaunch() argument 133 super(uiBot); in ManualActivityLaunch() 251 private BaseTestCase(@NonNull UiBot uiBot) { 253 mUiBot = uiBot;
|
D | DialogLauncherActivity.java | 56 void launchDialog(UiBot uiBot) throws Exception { in launchDialog() argument 59 uiBot.assertShownByText("Username"); in launchDialog()
|
D | Helper.java | 798 public static void disableAutoRotation(UiBot uiBot) throws Exception { in disableAutoRotation() argument 800 uiBot.setScreenOrientation(PORTRAIT); in disableAutoRotation()
|
/cts/tests/autofillservice/src/android/autofillservice/cts/augmented/ |
D | AugmentedUiBot.java | 42 public AugmentedUiBot(@NonNull UiBot uiBot) { in AugmentedUiBot() argument 43 mUiBot = uiBot; in AugmentedUiBot()
|