Searched refs:uiBot (Results 1 – 11 of 11) sorted by relevance
/cts/tests/autofillservice/src/android/autofillservice/cts/activities/ |
D | WebViewMultiScreenLoginActivity.java | 70 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()
|
D | WebViewActivity.java | 80 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()
|
D | AbstractWebViewActivity.java | 34 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()
|
D | WelcomeActivity.java | 100 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()
|
D | SecondActivity.java | 71 public static void assertShowingDefaultMessage(UiBot uiBot) throws Exception { in assertShowingDefaultMessage() argument 72 final UiObject2 activity = uiBot.assertShownByRelativeId(ID_WELCOME); in assertShowingDefaultMessage()
|
D | ViewActionActivity.java | 113 public static void assertShowingDefaultMessage(UiBot uiBot) throws Exception { in assertShowingDefaultMessage() argument 114 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/testcore/ |
D | AugmentedUiBot.java | 43 public AugmentedUiBot(@NonNull UiBot uiBot) { in AugmentedUiBot() argument 44 mUiBot = uiBot; in AugmentedUiBot()
|
D | Helper.java | 863 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/ |
D | AugmentedAutofillAutoActivityLaunchTestCase.java | 61 public AugmentedAutofillAutoActivityLaunchTestCase(UiBot uiBot) { in AugmentedAutofillAutoActivityLaunchTestCase() argument 62 super(uiBot); in AugmentedAutofillAutoActivityLaunchTestCase()
|
D | AutoFillServiceTestCase.java | 134 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;
|