Merge "Keep hunting down flakes in testOpenCloseMessagesApp" into ub-launcher3-master

This commit is contained in:
Vadim Tryshev 2018-10-10 02:02:31 +00:00 committed by Android (Google) Code Review
commit 016ca90736
1 changed files with 1 additions and 13 deletions

View File

@ -39,23 +39,11 @@ public final class AppIcon {
return By.clazz(TextView.class).text(appName).pkg(LauncherInstrumentation.LAUNCHER_PKG);
}
/**
* Clicks the icon to launch its app.
*/
@Deprecated
public Background launch() {
LauncherInstrumentation.log("AppIcon.launch before click");
LauncherInstrumentation.assertTrue(
"Launching an app didn't open a new window: " + mIcon.getText(),
mIcon.clickAndWait(Until.newWindow(), LauncherInstrumentation.WAIT_TIME_MS));
return new Background(mLauncher);
}
/**
* Clicks the icon to launch its app.
*/
public Background launch(String packageName) {
LauncherInstrumentation.log("AppIcon.launch before click");
LauncherInstrumentation.log("AppIcon.launch before click " + mIcon.getVisibleCenter());
LauncherInstrumentation.assertTrue(
"Launching an app didn't open a new window: " + mIcon.getText(),
mIcon.clickAndWait(Until.newWindow(), LauncherInstrumentation.WAIT_TIME_MS));