其他分享
首页 > 其他分享> > 匹配Android中Espresso的WebView中的视图

匹配Android中Espresso的WebView中的视图

作者:互联网

我想在加载Salesforce登录页面的WebView中匹配用户名文本字段(但也可以应用于带有文本字段的任何其他页面).

我尝试过:

onView(withHint("User Name")).perform(typeText("test@sf.com"));

但这是行不通的.有更好的主意吗?

解决方法:

这可以使用Espresso Web 2.2 API来完成

onWebView().withElement(findElement(Locator.ID,"username")).perform(webKeys("test@sf.com"));

标签:android-espresso,android-webview,android,salesforce
来源: https://codeday.me/bug/20191120/2045119.html