Robotium:在一个测试用例中测试两种不同的活动

发布于 2024-11-04 16:22:20 字数 958 浏览 1 评论 0原文

我刚刚开始使用 Robotium,并尝试在一个测试用例中测试 Android 手机和联系人应用程序。

这是场景:

1-步骤

启动电话应用程序 - 拨打号码(33323589) - 等待(3秒) - 结束通话 - 返回电话应用程序。主屏幕 – 选择联系人列表选项卡。

  1. 步骤(在同一测试用例中)

转到联系人列表 - 向下滚动 - 选择一个联系人并拨打号码。

第一步有效,我可以启动联系人应用程序,但无法使用联系人列表。 我的问题是,当先前启动电话应用程序检测时,如何启动联系人应用程序的检测。

我尝试这样做:

Intent intent = new Intent(Intent.ACTION_MAIN); 
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); 
intent.setClassName(getTargetContext(), "com.android.contacts.contactsList"); 
Activity activity = startActivitySync(intent); 

在这个论坛中提到了 http://groups.google.com/group/robotium-developers/browse_thread/thread/c82a02b4973cbb4d/7a6795ddbcd7c527?show_docid=7a6795ddbcd7c527

不幸的是它不起作用

,请你帮我解决这个问题?

谢谢钦吉

I just got started with Robotium and tried to test the android phone and contact application in just one test case.

This is the scenario:

1- step

Start the phone application – Dial a number(33323589) – wait (3s) – finish the call- Go back to the phone app. Main screen – select the contacts list tab.

  1. step( in the same test case)

Go to contacts list - Scroll down - select a contact and Dial the number.

The first step works I am able to start the contact application, but not able to play with the contact list.
My question is how to start the instrumentation of the contact application when the phone application instrumentation was previously started.

I try this :

Intent intent = new Intent(Intent.ACTION_MAIN); 
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); 
intent.setClassName(getTargetContext(), "com.android.contacts.contactsList"); 
Activity activity = startActivitySync(intent); 

has mention in this forum http://groups.google.com/group/robotium-developers/browse_thread/thread/c82a02b4973cbb4d/7a6795ddbcd7c527?show_docid=7a6795ddbcd7c527

unfortunately its not working

please can you help me out of this problem ?

Thank you

Chindji

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

攒眉千度 2024-11-11 16:22:20

您无法使用 Robotium 同时测试两个“应用程序”。我认为在您的情况下,“联系人”应用程序是一个应用程序,而拨号是另一个应用程序。
更好的是,您可以在 Robotium 的项目托管网站(即 code.google.com)上找到相同的内容
hAppy编码

You can not test two "Applications" at the same time with Robotium. I think in your case Contacts application is one app and Dialing a number is another one.
Better you can find the same at Robotium's project hosting site i.e. code.google.com
hAppyCoding

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文