如何从Eclipse中的Java代码启动appium服务器

时间:2016-02-22 19:26:10

标签: java selenium appium

我正在尝试以编程方式从我的测试用例代码启动appium服务器,但没有任何帮助。控制台总是给我“org.openqa.selenium.remote.UnreachableBrowserException:无法启动新会话。可能的原因是远程服务器的无效地址或浏览器启动失败”错误消息。到目前为止我尝试了什么:

CommandLine command = new CommandLine("cmd");
command.addArgument("/c");
command.addArgument("C:/Program Files (x86)/Appium/node.exe");
command.addArgument("C:/Program Files (x86)/Appium/node_modules/appium/bin/appium.js");
        command.addArgument("--address");
        command.addArgument("127.0.0.1");
        command.addArgument("--bootstrap-port");
        command.addArgument("5001");
        command.addArgument("--no-reset");
        command.addArgument("--log");

不起作用。下一个:

DefaultExecuteResultHandler resultHandler = new DefaultExecuteResultHandler();
        DefaultExecutor executor = new DefaultExecutor();
        executor.setExitValue(1);
        executor.execute(new CommandLine("C:/Program Files (x86)/Appium/node.exe"), resultHandler);
        executor.execute(new CommandLine("C:/Program Files (x86)/Appium/node_modules/appium/bin/Appium.js --address 127.0.0.1 --chromedriver-port 9516 --bootstrap-port 4725 --selendroid-port 8082 --no-reset --local-timezone"), resultHandler);

不起作用。下一个:

ProcessBuilder pb = new ProcessBuilder("C:/Program Files(x86)/Appium/node.exe/");
        ProcessBuilder pb1 = new ProcessBuilder("C:/Program Files(x86)/Appium/node_modules/appium/bin/Appium.js --address 127.0.0.1 --chromedriver-port 9516 --bootstrap-port 5002 --no-reset --local-timezone");
        pb.start();
        pb1.start();

不起作用。下一个:

String path = "cmd /c start C:/Users/jamesrobinson/Desktop/Run automation servers.bat";
        Runtime rn = Runtime.getRuntime();
        Process process = rn.exec(path);

我可以从UI手动启动它的唯一方法。任何想法如何解决,将不胜感激。

3 个答案:

答案 0 :(得分:0)

在您分享屏幕截图之前,我猜测可能更改为default端口可能会帮助您成功创建会话:

command.addArgument("--bootstrap-port");
command.addArgument("4723");

一般的一行命令如下:

String command = "/Applications/Appium.app/Contents/Resources/node/bin/node /Applications/Appium.app/Contents/Resources/node_modules/appium/lib/server/main.js --command-timeout 120 --session-override" + nativelib + " --platform-name " + mobileOS + " --log-timestamp -a 0.0.0.0 -p "+4723; //+" --chromedriver-port "+chromePort+" -bp "+bootstrapPort;

其中

nativelib = " --native-instruments-lib"; //for iOS
nativelib = ""; //for android

mobileOS = "iOS"; //for iOS
mobileOS = "Android"; //for Android

答案 1 :(得分:0)

                Explanation: 
                1. Create a command string and then write this command in some .bat file and then execute this .bat file.
                2. (Code not posted here for this ==> )After executing this, you need to put a wait until appium server is started, you can do this by sending request to http://localhost:4723, wait until you get response from this url and then you can initiate the driver.

                    //Getting temp dir
                    String tempDir = System.getProperty("java.io.tmpdir").toString();
                    logFile = new File(tempDir+"\\applog.txt");

                    String commandFile = "C:\\appium_commands.bat";

                    String nodeExe = "C:\\node.exe";
                    String appiumJs = "C:\\node_modules\\appium\\bin\\Appium.js");

                    String strText = "start /B " + nodeExe + "  " + appiumJs + " -g " + logFile.toString() + " --full-reset --command-timeout 90 ";

                    logger.info("****** STARTING APPIUM SERVER USING COMMAND: "+strText);

                    WriteTextInFile(commandFile, strText);
                    Runtime.getRuntime().exec(commandFile);

            *********************  Code to Write Text in File  ***********
            WriteTextInFile(String commandFile, String strText)
           {
            FileWriter writer = new FileWriter(file);
            writer.write(strText);
            writer.close();
          }

          ************ Code to Send GET Request and Check Response *******
    //In this code, you can keep on checking until you get NON-Empty //result.tostring(); Also download and add apache httpclient-4.XXX.jar and //httpcore-4.XXX.jar to your project.

    import java.io.BufferedReader;
    import java.io.InputStreamReader;

    import org.apache.http.client.methods.CloseableHttpResponse;
    import org.apache.http.client.methods.HttpGet;
    import org.apache.http.conn.HttpHostConnectException;
    import org.apache.http.impl.client.CloseableHttpClient;
    import org.apache.http.impl.client.HttpClients;

    public class Test {

        public static void main(String[] args) {

            String ServerURL = "http://localhost:4723";
            StringBuffer result = new StringBuffer();
            CloseableHttpClient httpclient = null;
            CloseableHttpResponse response = null;

            try 
            {
                httpclient = HttpClients.createDefault();

                ServerURL = ServerURL.replace("%%", "").trim();
                HttpGet GetRequest = new HttpGet(ServerURL);
                try{
                    response = httpclient.execute(GetRequest);
                }catch(HttpHostConnectException h){
                    System.out.println("Couldn't connect to host: "+ServerURL);
                }

                BufferedReader rd = null;
                try{
                    rd = new BufferedReader( new InputStreamReader(response.getEntity().getContent()));
                }catch(NullPointerException e){
                    System.out.println("no response received.. ");
                }

                if(rd != null)
                {
                    String line = "";
                    while ((line = rd.readLine()) != null)
                    {
                        result.append(line);
                    }
                }
            } 
            catch(Exception e)
            {
            }
            finally 
            {
                try{
                    response.close();
                    httpclient.close();
                }
                catch(Exception e){
                }

            System.out.println("Final Response: "+result.toString());
            }
        }

    }

*********** node.json to be used with appium ***********



{
 "capabilities":
  [
{
"version":"4.4.2",
"maxInstances": 3,
"platformName":"ANDROID"
}
],
"configuration":
{
"cleanUpCycle":2000,
"timeout":30000,
"proxy": "org.openqa.grid.selenium.proxy.DefaultRemoteProxy",
"url":"http://WHERE_APPIUM_RUNNING_IP:4723/wd/hub",
"host": "WHERE_APPIUM_RUNNING_IP",
"port": 4723,
"maxSession": 6,
"register": true,
"registerCycle": 5000,
"hubPort": 4444,
"hubHost": "WHERE_GRID_RUNNING_IP"
}
}

答案 2 :(得分:0)

前提条件:

  1. 确保将nodejs安装在系统中
  2. 确保在您的系统中安装了appium。

-在下面的给定脚本中输入两者的位置。

public class mainClass{

AppiumDriverLocalService service;

@Test

public void  startSErver(){


    service=AppiumDriverLocalService.buildService(new AppiumServiceBuilder()
            .usingDriverExecutable(new File("C:\\Program Files\\nodejs\\node.exe"))
            .withAppiumJS(new File("C:\\Program Files (x86)\\Appium\\node_modules\\appium\\bin\\appium.js"))
            .withIPAddress("127.0.0.1").usingPort(4723));

 service.start(); // To start the appium  server