List of usage examples for org.openqa.selenium.remote Response setSessionId
public void setSessionId(String sessionId)
From source file:com.jobaline.uiautomation.framework.selenium.phantomJsThreeHourTimeoutFix.HttpCommandExecutor.java
License:Apache License
private Response createResponse(HttpResponse httpResponse, HttpContext context, EntityWithEncoding entityWithEncoding) throws IOException { final Response response; Header header = httpResponse.getFirstHeader("Content-Type"); if (header != null && header.getValue().startsWith("application/json")) { String responseAsText = entityWithEncoding.getContentString(); try {/*www . j av a2 s .co m*/ response = new JsonToBeanConverter().convert(Response.class, responseAsText); } catch (ClassCastException e) { if (responseAsText != null && "".equals(responseAsText)) { // The remote server has died, but has already set some headers. // Normally this occurs when the final window of the firefox driver // is closed on OS X. Return null, as the return value _should_ be // being ignored. This is not an elegant solution. return null; } throw new WebDriverException("Cannot convert text to response: " + responseAsText, e); } } else { response = new Response(); if (header != null && header.getValue().startsWith("image/png")) { response.setValue(entityWithEncoding.getContent()); } else if (entityWithEncoding.hasEntityContent()) { response.setValue(entityWithEncoding.getContentString()); } HttpHost finalHost = (HttpHost) context.getAttribute(HTTP_TARGET_HOST); String uri = finalHost.toURI(); String sessionId = HttpSessionId.getSessionId(uri); if (sessionId != null) { response.setSessionId(sessionId); } int statusCode = httpResponse.getStatusLine().getStatusCode(); if (!(statusCode > 199 && statusCode < 300)) { // 4xx represents an unknown command or a bad request. if (statusCode > 399 && statusCode < 500) { response.setStatus(ErrorCodes.UNKNOWN_COMMAND); } else if (statusCode > 499 && statusCode < 600) { // 5xx represents an internal server error. The response status should already be set, but // if not, set it to a general error code. if (response.getStatus() == ErrorCodes.SUCCESS) { response.setStatus(ErrorCodes.UNHANDLED_ERROR); } } else { response.setStatus(ErrorCodes.UNHANDLED_ERROR); } } if (response.getValue() instanceof String) { // We normalise to \n because Java will translate this to \r\n // if this is suitable on our platform, and if we have \r\n, java will // turn this into \r\r\n, which would be Bad! response.setValue(((String) response.getValue()).replace("\r\n", "\n")); } } response.setState(errorCodes.toState(response.getStatus())); return response; }
From source file:org.aludratest.service.gui.web.selenium.selenium2.AludraSeleniumHttpCommandExecutor.java
License:Apache License
private Response createResponse(HttpResponse httpResponse, HttpContext context) throws IOException { org.openqa.selenium.remote.http.HttpResponse internalResponse = new org.openqa.selenium.remote.http.HttpResponse(); internalResponse.setStatus(httpResponse.getStatusLine().getStatusCode()); for (Header header : httpResponse.getAllHeaders()) { for (HeaderElement headerElement : header.getElements()) { internalResponse.addHeader(header.getName(), headerElement.getValue()); }/* ww w .j a va 2s . co m*/ } HttpEntity entity = httpResponse.getEntity(); if (entity != null) { try { internalResponse.setContent(EntityUtils.toByteArray(entity)); } finally { EntityUtils.consume(entity); } } Response response = responseCodec.decode(internalResponse); if (response.getSessionId() == null) { HttpHost finalHost = (HttpHost) context.getAttribute(HttpCoreContext.HTTP_TARGET_HOST); String uri = finalHost.toURI(); String sessionId = HttpSessionId.getSessionId(uri); response.setSessionId(sessionId); } return response; }
From source file:org.uiautomation.ios.server.command.BaseCommandHandler.java
License:Apache License
protected Response createResponse(Object value) { Response r = new Response(); r.setSessionId(getSession().getSessionId()); r.setStatus(0);/*from w ww . j a v a 2s .c o m*/ r.setValue(value); return r; }
From source file:org.uiautomation.ios.server.command.UIAScriptHandler.java
License:Apache License
public Response handle() throws Exception { if (js == null) { throw new RuntimeException("need to specify the JS to run"); }//from w w w . java 2s.c om UIAScriptRequest r = new UIAScriptRequest(js); communication().sendNextCommand(r); Response response; // Stop is a fire and forget response. It will kill the instruments script, // so the script cannot // send a response. if ("stop".equals(js)) { response = new Response(); response.setSessionId(getRequest().getSession()); response.setStatus(0); response.setValue("ok"); } else { response = communication().waitForResponse().getResponse(); } return response; }
From source file:org.uiautomation.ios.server.command.uiautomation.FlickNHandler.java
License:Apache License
public Point getStartCoordinatesCentered(WebDriverLikeRequest request, String elementId) throws InterruptedException { String getElementJS = getElementTemplate.replace(":reference", elementId).replace(":sessionId", request.getSession());//from w w w . ja v a2 s. com UIAScriptRequest r = new UIAScriptRequest(getElementJS); communication().sendNextCommand(r); Response response; if ("stop".equals(getElementJS)) { response = new Response(); response.setSessionId(getRequest().getSession()); response.setStatus(0); response.setValue("ok"); } else { response = communication().waitForResponse().getResponse(); } return CoordinateUtils.getCenterPointFromResponse(response); }
From source file:org.uiautomation.ios.server.command.uiautomation.GetConfigurationNHandler.java
License:Apache License
@Override public Response handle() throws Exception { String name = (String) getRequest().getVariableValue(":command"); WebDriverLikeCommand command = WebDriverLikeCommand.valueOf(name); CommandConfiguration conf = getSession().configure(command); JSONObject res = new JSONObject(); Map<String, Object> m = conf.getAll(); for (String key : m.keySet()) { res.put(key, m.get(key));//from ww w .java 2 s . c o m } Response resp = new Response(); resp.setSessionId(getSession().getSessionId()); resp.setStatus(0); resp.setValue(res); return resp; }
From source file:org.uiautomation.ios.server.command.uiautomation.GetCurrentContextNHandler.java
License:Apache License
@Override public Response handle() throws Exception { WorkingMode mode = getSession().getWorkingMode(); String value = mode.toString(); if (mode == WorkingMode.Web) { value = WorkingMode.Web + "_" + getSession().getRemoteWebDriver().getWindowHandle(); }// ww w. j a va2 s. c om Response resp = new Response(); resp.setSessionId(getSession().getSessionId()); resp.setStatus(0); resp.setValue(value); return resp; }
From source file:org.uiautomation.ios.server.command.uiautomation.GetSessionsNHandler.java
License:Apache License
@Override public Response handle() throws Exception { JSONArray res = new JSONArray(); List<ServerSideSession> sessions = getDriver().getSessions(); for (ServerSideSession s : sessions) { JSONObject session = new JSONObject(); session.put("id", s.getSessionId()); IOSRunningApplication app = s.getApplication(); IOSCapabilities cap = app.getCapabilities(); session.put("capabilities", cap.getRawCapabilities()); res.put(session);// w w w.ja va 2 s .c o m } Response resp = new Response(); resp.setSessionId("dummy one"); resp.setStatus(0); resp.setValue(res.toString()); return resp; }
From source file:org.uiautomation.ios.server.command.uiautomation.GetWindowHandlesNHandler.java
License:Apache License
@Override public Response handle() throws Exception { ServerSideSession sss = getDriver().getSession(getRequest().getSession()); Set<String> handles = new HashSet<String>(); handles.add(WorkingMode.Native.toString()); if (sss.getNativeDriver().findElements(new TypeCriteria(UIAWebView.class)).size() > 0) { for (WebkitPage page : getSession().getRemoteWebDriver().getPages()) { handles.add(WorkingMode.Web + "_" + page.getPageId()); }//from ww w .j a v a 2 s.co m } Response resp = new Response(); resp.setSessionId(getSession().getSessionId()); resp.setStatus(0); resp.setValue(handles); return resp; }
From source file:org.uiautomation.ios.server.command.uiautomation.NewSession.java
License:Apache License
public Response handle() throws Exception { try {/*ww w. j a va 2s . co m*/ GetCapabilitiesCommandHandler.reset(); JSONObject payload = getRequest().getPayload(); IOSCapabilities capabilities = new IOSCapabilities(payload.getJSONObject("desiredCapabilities")); session = getDriver().createSession(capabilities); session.start(); Response resp = new Response(); resp.setSessionId(session.getSessionId()); resp.setStatus(0); resp.setValue(""); return resp; } catch (Exception e) { throw new SessionNotCreatedException(e.getMessage()); } }