You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In hybrid environment(native is android with webview imbedded), when I want to get all contexts including both NATIVE and WEBVIEW, macaca hung there and there is no response within couple minutes.
I checked the source code and found that No_Such_Element is used still within getContexts(), getWindows() function as shown in following:
In hybrid environment(native is android with webview imbedded), when I want to get all contexts including both NATIVE and WEBVIEW, macaca hung there and there is no response within couple minutes.
I checked the source code and found that No_Such_Element is used still within getContexts(), getWindows() function as shown in following:
//TODO
getWindows = new WindowController() {
@OverRide
public NanoHTTPD.Response get(RouterNanoHTTPD.UriResource uriResource, Map<String, String> urlParams, NanoHTTPD.IHTTPSession session) {
String sessionId = urlParams.get("sessionId");
return NanoHTTPD.newFixedLengthResponse(getStatus(), getMimeType(), new Response(## Status.NoSuchElement, sessionId).toString());
}
};
I don't know why. Would you please see if this part is already implemented too?
The text was updated successfully, but these errors were encountered: