如何在 selendroid 中验证 toast 消息
Posted
技术标签:
【中文标题】如何在 selendroid 中验证 toast 消息【英文标题】:How to verify a toast message in selendroid 【发布时间】:2014-09-06 17:32:06 【问题描述】:我需要验证“创建成功”之类的 toast 消息。我尝试使用链接文本。但它不起作用。有人可以帮我解决这个问题吗?
【问题讨论】:
【参考方案1】:请在您的 selendroid 代码中使用以下代码
waitForElement(By.partialLinkText("Your Toast message"), 4, driver);
第一个参数是您的吐司消息。第二个参数是以秒为单位的持续时间,第三个是驱动程序。
【讨论】:
有没有什么办法可以捕获toast并打印出来? 我会尝试捕捉并会尽快更新..请投票给答案,这样对其他人也有帮助【参考方案2】:<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/toast_layout_root"
android:orientation="horizontal"
android:layout_
android:layout_
android:padding="10dp"
android:background="#DAAA" >
<ImageView android:id="@+id/image"
android:layout_
android:layout_
android:layout_marginRight="10dp" />
<TextView android:id="@+id/text"
android:layout_
android:layout_
android:textColor="#FFF" />
</LinearLayout>
MainActivity.java
LayoutInflater inflater = getLayoutInflater();
View layout = inflater.inflate(R.layout.toast_layout,
(ViewGroup) findViewById(R.id.toast_layout_root));
ImageView image = (ImageView) layout.findViewById(R.id.image);
image.setImageResource(R.drawable.android);
TextView text = (TextView) layout.findViewById(R.id.text);
text.setText("Hello! This is a custom toast!");
Toast toast = new Toast(getApplicationContext());
toast.setGravity(Gravity.CENTER_VERTICAL, 0, 0);
toast.setDuration(Toast.LENGTH_LONG);
toast.setView(layout);
toast.show()
【讨论】:
使用 Selendroid 自动化工具,我需要验证 toast 消息以上是关于如何在 selendroid 中验证 toast 消息的主要内容,如果未能解决你的问题,请参考以下文章
如何将 Selendroid 添加到 android studio 以进行网页抓取?
selendroid项目实战3 selendroid driver初始化失败问题