org.openqa.selendroid.server.handler.OpenUrl.java Source code

Java tutorial

Introduction

Here is the source code for org.openqa.selendroid.server.handler.OpenUrl.java

Source

/*
 * Copyright 2012 selendroid committers.
 * 
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
 * in compliance with the License. You may obtain a copy of the License at
 * 
 * http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software distributed under the License
 * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
 * or implied. See the License for the specific language governing permissions and limitations under
 * the License.
 */
package org.openqa.selendroid.server.handler;

import org.openqa.selendroid.server.RequestHandler;
import org.openqa.selendroid.server.Response;
import org.openqa.selendroid.server.exceptions.SelendroidException;
import org.openqa.selendroid.util.SelendroidLogger;
import org.webbitserver.HttpRequest;

import com.google.gson.JsonElement;

public class OpenUrl extends RequestHandler {
    public OpenUrl(HttpRequest request) {
        super(request);
    }

    @Override
    public Response handle() {
        SelendroidLogger.log("Open URL command");
        JsonElement url = getPayload().get("url");
        if (url.isJsonNull()) {
            return new Response(getSessionId(), 13,
                    new SelendroidException("Not able to open Url because Url is missing."));
        }
        getAndroidDriver().get(url.getAsString());
        return new Response(getSessionId(), "");
    }
}