gpt4 book ai didi

android - 右侧编辑文本清除按钮的 Appium 测试

转载 作者:太空狗 更新时间:2023-10-29 14:51:19 25 4
gpt4 key购买 nike

我正在使用 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;
}
});

最佳答案

使用发送键方法向您的编辑文本发送一些文本。然后单击您的 x 按钮并从编辑文本中获取文本并验证输入的文本是否已清除。这是您要验证的内容吗?

关于android - 右侧编辑文本清除按钮的 Appium 测试,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35100556/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com