无法从Native应用程序切换到webview android浏览器

时间:2017-08-17 10:11:37

标签: android android-webview appium

在我的应用中。当我点击“使用谷歌创建帐户”选项时,它会重定向到webview,所以现在我尝试使用此代码

Set<String> text = ((AndroidDriver) driver).getContextHandles();

System.out.println(text);

for (String contexts : text) {
    String setContext = text.toArray()[1].toString();
    System.out.println(setContext);
    ((AndroidDriver) driver).context(setContext);
}

这里是我得到的输出

  

[NATIVE_APP,WEBVIEW_com.android.browser]

用于文本和 WEBVIEW_com.android.browser. - 代表setContext。 但切换后我无法点击元素。请帮助我。

0 个答案:

没有答案