getwindowHandle()抛出方法尚未实现(警告:服务器未提供任何堆栈跟踪信息)错误

问题描述 投票:0回答:1

在android web浏览器中实现getwindowhandles时,我收到错误“方法尚未实现(警告:服务器未提供任何堆栈跟踪信息)”

场景是:我需要切换到下一个选项卡并获取URL并关闭它。

android selenium selenium-webdriver appium
1个回答
0
投票

您似乎正在尝试在本机应用程序上下文中执行getWindowHandle()操作,因为appium可能会抛出“方法尚未实现(警告:服务器未提供任何堆栈跟踪信息)”

以下是解决和解决此问题的方法:

String handle = driver.getWindowHandle();之前添加以下行

//Get all available contexts
Set<String> contexts=driver.getContextHandles();
//Review available contexts on console
System.out.println(contexts);

//Iterate through the contexts
for(String context :contexts){
    //Check if the context is webview. If yes, then switch to that context
    if(context.toLowerCase().contains("webview")||context.toLowerCase().contains("web_view")){
        driver.context(context);
        //break the loop if webview context is found and driver switches to webview context
        break;
        }
    }
© www.soinside.com 2019 - 2024. All rights reserved.