我正在使用APPIUM,当我正在执行时,它显示webview_undefined。但它应该显示webview_(webviewName)。我该如何解决这个问题?
答案 0 :(得分:0)
我正在使用此代码,它正在为我工作。请试试这个。
Set <String> totalViews = appiumDriver.getContextHandles();
int count = 0;
for(String page: totalViews)
{
appiumDriver.context((page) totalViews.toArray()[count]);
count =count+1;
if(page.contains("change Window Value"))
{
System.out.println("Inside "+changeWindow);
break;
}
注意:将“更改窗口值”替换为您的窗口值,例如Webview
,Native
。