mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-03-01 00:06:47 +00:00
There is some unknown to me logic in Launcher that sometimes duplicates the long-press event . This causes flakes whenTAPL expects one long press, but the actual sequence is 2 events. That duplication logic seems to be related to race conditions is is hard to repro. For now, just removing long-press verification. I'll start with more deterministic events. Bug: 147806932 Change-Id: I03841131bf8cae88011824f660f2c7b1906592f4
51 lines
1.5 KiB
Java
51 lines
1.5 KiB
Java
/*
|
|
* Copyright (C) 2018 The Android Open Source Project
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
package com.android.launcher3.tapl;
|
|
|
|
import android.widget.TextView;
|
|
|
|
import androidx.test.uiautomator.By;
|
|
import androidx.test.uiautomator.BySelector;
|
|
import androidx.test.uiautomator.UiObject2;
|
|
|
|
/**
|
|
* App icon, whether in all apps or in workspace/
|
|
*/
|
|
public final class AppIcon extends Launchable {
|
|
|
|
AppIcon(LauncherInstrumentation launcher, UiObject2 icon) {
|
|
super(launcher, icon);
|
|
}
|
|
|
|
static BySelector getAppIconSelector(String appName, LauncherInstrumentation launcher) {
|
|
return By.clazz(TextView.class).text(appName).pkg(launcher.getLauncherPackageName());
|
|
}
|
|
|
|
/**
|
|
* Long-clicks the icon to open its menu.
|
|
*/
|
|
public AppIconMenu openMenu() {
|
|
return new AppIconMenu(mLauncher, mLauncher.clickAndGet(
|
|
mObject, "deep_shortcuts_container"));
|
|
}
|
|
|
|
@Override
|
|
protected String getLongPressIndicator() {
|
|
return "deep_shortcuts_container";
|
|
}
|
|
}
|