Searched refs:uiBot (Results 1 – 10 of 10) sorted by relevance
/cts/tests/autofillservice/src/android/autofillservice/cts/activities/ |
D | WebViewMultiScreenLoginActivity.java | 69 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()
|
D | WebViewActivity.java | 77 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()
|
D | AbstractWebViewActivity.java | 33 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()
|
D | WelcomeActivity.java | 99 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()
|
D | SecondActivity.java | 70 public static void assertShowingDefaultMessage(UiBot uiBot) throws Exception { in assertShowingDefaultMessage() argument 71 final UiObject2 activity = uiBot.assertShownByRelativeId(ID_WELCOME); in assertShowingDefaultMessage()
|
D | ViewActionActivity.java | 112 public static void assertShowingDefaultMessage(UiBot uiBot) throws Exception { in assertShowingDefaultMessage() argument 113 final UiObject2 activity = uiBot.assertShownByRelativeId(ID_WELCOME); in assertShowingDefaultMessage()
|
D | DialogLauncherActivity.java | 60 public void launchDialog(UiBot uiBot) throws Exception { in launchDialog() argument 63 uiBot.assertShownByText("Username"); in launchDialog()
|
/cts/tests/autofillservice/src/android/autofillservice/cts/commontests/ |
D | AutoFillServiceTestCase.java | 126 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;
|
D | AugmentedAutofillAutoActivityLaunchTestCase.java | 61 public AugmentedAutofillAutoActivityLaunchTestCase(UiBot uiBot) { in AugmentedAutofillAutoActivityLaunchTestCase() argument 62 super(uiBot); in AugmentedAutofillAutoActivityLaunchTestCase()
|
/cts/tests/autofillservice/src/android/autofillservice/cts/testcore/ |
D | Helper.java | 852 public static void disableAutoRotation(UiBot uiBot) throws Exception { in disableAutoRotation() argument 854 uiBot.setScreenOrientation(PORTRAIT); in disableAutoRotation()
|