我正在使用Appium来测试我的Android应用。我在文本右侧创建了一个带有X(清晰图标)的编辑文本,当用户单击此图标时,编辑文本变为空。问题是如何在Appium测试中测试此点击。
这是我的xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:padding="10dp">
<EditText
android:id="@+id/password"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Edit Text"
android:padding="12dp"
android:drawableRight="@android:drawable/ic_delete"// X icon at right side of edit text
>
<requestFocus />
</EditText>
以下是代码
passwordEditText.setOnTouchListener(new View.OnTouchListener() {
@Override
public boolean onTouch(View v, MotionEvent event) {
final int DRAWABLE_LEFT = 0;
final int DRAWABLE_TOP = 1;
final int DRAWABLE_RIGHT = 2;
final int DRAWABLE_BOTTOM = 3;
if (event.getAction() == MotionEvent.ACTION_UP) {
if (event.getRawX() >= (passwordEditText.getRight() - passwordEditText.getCompoundDrawables()[DRAWABLE_RIGHT].getBounds().width())) {
passwordEditText.setText(null);
return true;
}
}
return false;
}
});
答案 0 :(得分:0)
使用发送密钥方法将一些文本发送到您的编辑文本。然后单击您的x按钮并从编辑文本中获取文本并验证输入的文本是否已清除..这是您要验证的内容吗?