Robotium:在一个测试用例中测试两种不同的活动
我刚刚开始使用 Robotium,并尝试在一个测试用例中测试 Android 手机和联系人应用程序。
这是场景:
1-步骤
启动电话应用程序 - 拨打号码(33323589) - 等待(3秒) - 结束通话 - 返回电话应用程序。主屏幕 – 选择联系人列表选项卡。
- 步骤(在同一测试用例中)
转到联系人列表 - 向下滚动 - 选择一个联系人并拨打号码。
第一步有效,我可以启动联系人应用程序,但无法使用联系人列表。 我的问题是,当先前启动电话应用程序检测时,如何启动联系人应用程序的检测。
我尝试这样做:
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);
不幸的是它不起作用
,请你帮我解决这个问题?
谢谢钦吉
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.
- 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您无法使用 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