//混合APP的处理
//getContextHandles():获取所有可用的上下文
//context():设置上下文
//getContext():获取当前上下文
//1. getContext():获取当前上下文
String h1=driver.getContext();
System.out.println(h1);
//2. 获取所有可用的上下文
Set ContextHandles=driver.getContextHandles();
System.out.println(ContextHandles.toString());//在此运行一下,获取已下句柄
//已获取的句柄
//[NATIVE_APP, WEBVIEW_com.ss.android.article.news]
//3.切换上下文,换带H5页面 context():设置上下文
driver.context("WEBVIEW_com.ss.android.article.news");
driver.findElementByXPath("/html/body/div/div[2]/div[2]/div[2]/a/div/div[2]/span[1]").click();
driver.context("NATIVE_APP");
}
}