其他分享
首页 > 其他分享> > 使用android espresso自动进行深层链接

使用android espresso自动进行深层链接

作者:互联网

我想编写espresso脚本来测试深度链接,却不知道如何开始.寻找可以帮助我获得更多想法的解决方案,可能是逐步入门的步骤.

例如:我正在寻找一种情况,例如您在gmail点击中获得一个链接,该链接上应将用户定向到移动应用程序.我如何开始使用espresso测试类似的东西?

提前致谢.

解决方法:

从活动规则开始

 @Rule
 public ActivityTestRule<YourAppMainActivity> mActivityRule =
            new ActivityTestRule<>(YourAppMainActivity.class, true, false);

然后,您想从链接中解析uri并返回意图

String uri = "http://your_deep_link_from_gmail"; 
private Intent getDeepLinkIntent(String uri){
        Intent intent = new Intent(Intent.ACTION_VIEW,
                Uri.parse(uri))
                .setPackage(getTargetContext().getPackageName());


        return intent;
    }

然后,您希望活动规则启动意图

Intent intent = getDeepLinkIntent(deepLinkUri);
mActivityRule.launchActivity(intent);

标签:android-espresso,android,deep-linking
来源: https://codeday.me/bug/20191111/2019279.html