How to fix URL definitions in Eclipse for Appium Server











up vote
0
down vote

favorite












I'm new to eclipse. I'm trying to start Appium test on Android devices. My preferenses:




  • Appium 1.8.2

  • jre1.8.0_191

  • jdk1.8.0_191

  • eclipse 4.9.0

  • TestNG

  • AndroidStudio 3.2.1

  • AndroidDeveloperTools


So after installing, configuration Appiumserver, Android SDK, Android Device Manager - next step is to start testing in Eclipse IDE I've got problem with defining URL and don't know what to do.
jar files:




  • java-client-6.1.0.jar

  • gson-2.8.5.jar

  • client-combined-3.9.0-sources.jar

  • client-combined-3.9.0.jar

  • seleium-3.9.0-nodeps-sources.jar

  • seleium-3.9.0-nodeps.jar

  • seleium-html-runner-3.9.0.jar

  • seleium-server-standalone-3.9.0.jar

  • TestNG

  • JRE System Library


that's all



import io.appium.java_client.MobileElement;
import io.appium.java_client.android.AndroidDriver;
import java.net.MalformedURLException;
import java.net.URL;
import java.util.concurrent.TimeUnit;
import org.openqa.selenium.remote.DesiredCapabilities;
import org.testng.annotations.AfterClass;
import org.testng.annotations.BeforeClass;
import org.testng.annotations.Test;


public class FirstScript {
private URL serverUrl;

public static AndroidDriver driver;

public String APPIUM_PORT = "4723";

@BeforeClass
public void setUp() throws MalformedURLException{
//Set the Desired Capabilities
DesiredCapabilities caps = new DesiredCapabilities();
caps.setCapability("deviceName", "Samsung S7");
caps.setCapability("udid", "******************"); //Give Device ID of your mobile phone
caps.setCapability("platformName", "Android");
caps.setCapability("platformVersion", "8.0");
caps.setCapability("appPackage", "com.***.***");
caps.setCapability("appActivity", "com.***.***.MainActivity");
caps.setCapability("noReset", "true");
try {
serverUrl = new URL("http://127.0.0.1:4723/wd/hub");
} catch (MalformedURLException e) {
e.printStackTrace();
}
driver = new AndroidDriver (serverUrl,caps);
driver.manage().timeouts().implicitlyWait(10,TimeUnit.SECONDS);
}

@Test
public void testExample() {***}

@AfterClass
public void tearDown() {driver.closeApp();}
}


Running debug for this code with error



Server is working










share|improve this question
























  • Can you share the error screenshot? It'll help us understand your problem better. Or try using localhost instead of IP address.
    – Wasiq Bhamla
    Nov 15 at 6:45












  • Error screenshot
    – Эрдэм Николаев
    Nov 19 at 6:21












  • Check my answer, hopefully it will solve your issue.
    – Wasiq Bhamla
    Nov 20 at 5:36















up vote
0
down vote

favorite












I'm new to eclipse. I'm trying to start Appium test on Android devices. My preferenses:




  • Appium 1.8.2

  • jre1.8.0_191

  • jdk1.8.0_191

  • eclipse 4.9.0

  • TestNG

  • AndroidStudio 3.2.1

  • AndroidDeveloperTools


So after installing, configuration Appiumserver, Android SDK, Android Device Manager - next step is to start testing in Eclipse IDE I've got problem with defining URL and don't know what to do.
jar files:




  • java-client-6.1.0.jar

  • gson-2.8.5.jar

  • client-combined-3.9.0-sources.jar

  • client-combined-3.9.0.jar

  • seleium-3.9.0-nodeps-sources.jar

  • seleium-3.9.0-nodeps.jar

  • seleium-html-runner-3.9.0.jar

  • seleium-server-standalone-3.9.0.jar

  • TestNG

  • JRE System Library


that's all



import io.appium.java_client.MobileElement;
import io.appium.java_client.android.AndroidDriver;
import java.net.MalformedURLException;
import java.net.URL;
import java.util.concurrent.TimeUnit;
import org.openqa.selenium.remote.DesiredCapabilities;
import org.testng.annotations.AfterClass;
import org.testng.annotations.BeforeClass;
import org.testng.annotations.Test;


public class FirstScript {
private URL serverUrl;

public static AndroidDriver driver;

public String APPIUM_PORT = "4723";

@BeforeClass
public void setUp() throws MalformedURLException{
//Set the Desired Capabilities
DesiredCapabilities caps = new DesiredCapabilities();
caps.setCapability("deviceName", "Samsung S7");
caps.setCapability("udid", "******************"); //Give Device ID of your mobile phone
caps.setCapability("platformName", "Android");
caps.setCapability("platformVersion", "8.0");
caps.setCapability("appPackage", "com.***.***");
caps.setCapability("appActivity", "com.***.***.MainActivity");
caps.setCapability("noReset", "true");
try {
serverUrl = new URL("http://127.0.0.1:4723/wd/hub");
} catch (MalformedURLException e) {
e.printStackTrace();
}
driver = new AndroidDriver (serverUrl,caps);
driver.manage().timeouts().implicitlyWait(10,TimeUnit.SECONDS);
}

@Test
public void testExample() {***}

@AfterClass
public void tearDown() {driver.closeApp();}
}


Running debug for this code with error



Server is working










share|improve this question
























  • Can you share the error screenshot? It'll help us understand your problem better. Or try using localhost instead of IP address.
    – Wasiq Bhamla
    Nov 15 at 6:45












  • Error screenshot
    – Эрдэм Николаев
    Nov 19 at 6:21












  • Check my answer, hopefully it will solve your issue.
    – Wasiq Bhamla
    Nov 20 at 5:36













up vote
0
down vote

favorite









up vote
0
down vote

favorite











I'm new to eclipse. I'm trying to start Appium test on Android devices. My preferenses:




  • Appium 1.8.2

  • jre1.8.0_191

  • jdk1.8.0_191

  • eclipse 4.9.0

  • TestNG

  • AndroidStudio 3.2.1

  • AndroidDeveloperTools


So after installing, configuration Appiumserver, Android SDK, Android Device Manager - next step is to start testing in Eclipse IDE I've got problem with defining URL and don't know what to do.
jar files:




  • java-client-6.1.0.jar

  • gson-2.8.5.jar

  • client-combined-3.9.0-sources.jar

  • client-combined-3.9.0.jar

  • seleium-3.9.0-nodeps-sources.jar

  • seleium-3.9.0-nodeps.jar

  • seleium-html-runner-3.9.0.jar

  • seleium-server-standalone-3.9.0.jar

  • TestNG

  • JRE System Library


that's all



import io.appium.java_client.MobileElement;
import io.appium.java_client.android.AndroidDriver;
import java.net.MalformedURLException;
import java.net.URL;
import java.util.concurrent.TimeUnit;
import org.openqa.selenium.remote.DesiredCapabilities;
import org.testng.annotations.AfterClass;
import org.testng.annotations.BeforeClass;
import org.testng.annotations.Test;


public class FirstScript {
private URL serverUrl;

public static AndroidDriver driver;

public String APPIUM_PORT = "4723";

@BeforeClass
public void setUp() throws MalformedURLException{
//Set the Desired Capabilities
DesiredCapabilities caps = new DesiredCapabilities();
caps.setCapability("deviceName", "Samsung S7");
caps.setCapability("udid", "******************"); //Give Device ID of your mobile phone
caps.setCapability("platformName", "Android");
caps.setCapability("platformVersion", "8.0");
caps.setCapability("appPackage", "com.***.***");
caps.setCapability("appActivity", "com.***.***.MainActivity");
caps.setCapability("noReset", "true");
try {
serverUrl = new URL("http://127.0.0.1:4723/wd/hub");
} catch (MalformedURLException e) {
e.printStackTrace();
}
driver = new AndroidDriver (serverUrl,caps);
driver.manage().timeouts().implicitlyWait(10,TimeUnit.SECONDS);
}

@Test
public void testExample() {***}

@AfterClass
public void tearDown() {driver.closeApp();}
}


Running debug for this code with error



Server is working










share|improve this question















I'm new to eclipse. I'm trying to start Appium test on Android devices. My preferenses:




  • Appium 1.8.2

  • jre1.8.0_191

  • jdk1.8.0_191

  • eclipse 4.9.0

  • TestNG

  • AndroidStudio 3.2.1

  • AndroidDeveloperTools


So after installing, configuration Appiumserver, Android SDK, Android Device Manager - next step is to start testing in Eclipse IDE I've got problem with defining URL and don't know what to do.
jar files:




  • java-client-6.1.0.jar

  • gson-2.8.5.jar

  • client-combined-3.9.0-sources.jar

  • client-combined-3.9.0.jar

  • seleium-3.9.0-nodeps-sources.jar

  • seleium-3.9.0-nodeps.jar

  • seleium-html-runner-3.9.0.jar

  • seleium-server-standalone-3.9.0.jar

  • TestNG

  • JRE System Library


that's all



import io.appium.java_client.MobileElement;
import io.appium.java_client.android.AndroidDriver;
import java.net.MalformedURLException;
import java.net.URL;
import java.util.concurrent.TimeUnit;
import org.openqa.selenium.remote.DesiredCapabilities;
import org.testng.annotations.AfterClass;
import org.testng.annotations.BeforeClass;
import org.testng.annotations.Test;


public class FirstScript {
private URL serverUrl;

public static AndroidDriver driver;

public String APPIUM_PORT = "4723";

@BeforeClass
public void setUp() throws MalformedURLException{
//Set the Desired Capabilities
DesiredCapabilities caps = new DesiredCapabilities();
caps.setCapability("deviceName", "Samsung S7");
caps.setCapability("udid", "******************"); //Give Device ID of your mobile phone
caps.setCapability("platformName", "Android");
caps.setCapability("platformVersion", "8.0");
caps.setCapability("appPackage", "com.***.***");
caps.setCapability("appActivity", "com.***.***.MainActivity");
caps.setCapability("noReset", "true");
try {
serverUrl = new URL("http://127.0.0.1:4723/wd/hub");
} catch (MalformedURLException e) {
e.printStackTrace();
}
driver = new AndroidDriver (serverUrl,caps);
driver.manage().timeouts().implicitlyWait(10,TimeUnit.SECONDS);
}

@Test
public void testExample() {***}

@AfterClass
public void tearDown() {driver.closeApp();}
}


Running debug for this code with error



Server is working







appium appium-android






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 20 at 5:27









Wasiq Bhamla

54339




54339










asked Nov 14 at 6:32









Эрдэм Николаев

32




32












  • Can you share the error screenshot? It'll help us understand your problem better. Or try using localhost instead of IP address.
    – Wasiq Bhamla
    Nov 15 at 6:45












  • Error screenshot
    – Эрдэм Николаев
    Nov 19 at 6:21












  • Check my answer, hopefully it will solve your issue.
    – Wasiq Bhamla
    Nov 20 at 5:36


















  • Can you share the error screenshot? It'll help us understand your problem better. Or try using localhost instead of IP address.
    – Wasiq Bhamla
    Nov 15 at 6:45












  • Error screenshot
    – Эрдэм Николаев
    Nov 19 at 6:21












  • Check my answer, hopefully it will solve your issue.
    – Wasiq Bhamla
    Nov 20 at 5:36
















Can you share the error screenshot? It'll help us understand your problem better. Or try using localhost instead of IP address.
– Wasiq Bhamla
Nov 15 at 6:45






Can you share the error screenshot? It'll help us understand your problem better. Or try using localhost instead of IP address.
– Wasiq Bhamla
Nov 15 at 6:45














Error screenshot
– Эрдэм Николаев
Nov 19 at 6:21






Error screenshot
– Эрдэм Николаев
Nov 19 at 6:21














Check my answer, hopefully it will solve your issue.
– Wasiq Bhamla
Nov 20 at 5:36




Check my answer, hopefully it will solve your issue.
– Wasiq Bhamla
Nov 20 at 5:36












2 Answers
2






active

oldest

votes

















up vote
0
down vote



accepted










The solution to your issue is that you use latest stable version of Selenium i.e. 3.141.5



If you're having Java project then, before adding new latest version of jar's make sure to first remove all selenium related old jar's and then add newly downloaded version of the jar's to build path.



In case of Maven project, update the selenium dependency version to latest and run following on terminal,



$ mvn clean install





share|improve this answer




























    up vote
    0
    down vote














    I suggest you to use maven project and the dependencies: java-client, selenium-java and testng.




    If you don't want to use maven project, you need to import above libraries in eclipse. For that From your Eclipse workspace, right click your project on the left pane -> Properties -> Java Build Path -> Add Jars -> add your jars there.



    Change your code as follow:



    public class FirstScript {

    public static AppiumDriver<MobileElement> driver;

    @BeforeClass
    public void setUp() throws MalformedURLException{
    //Set the Desired Capabilities
    DesiredCapabilities caps = new DesiredCapabilities();
    caps.setCapability("deviceName", "Samsung S7");
    caps.setCapability("udid", "******************"); //Give Device ID of your mobile phone
    caps.setCapability("platformName", "Android");
    caps.setCapability("platformVersion", "8.0");
    caps.setCapability("appPackage", "com.***.***");
    caps.setCapability("appActivity", "com.***.***.MainActivity");
    caps.setCapability("noReset", "true");

    driver = new AndroidDriver (new URL("http://127.0.0.1:4723/wd/hub"),caps);
    driver.manage().timeouts().implicitlyWait(10,TimeUnit.SECONDS);
    }


    }





    share|improve this answer





















    • I'm already using those librares: 1. java-client-6.1.0.jar 2. gson-2.8.5.jar 3. client-combined-3.9.0-sources.jar 4. client-combined-3.9.0.jar 5. seleium-3.9.0-nodeps-sources.jar 6. seleium-3.9.0-nodeps.jar 7. seleium-html-runner-3.9.0.jar 8. seleium-server-standalone-3.9.0.jar 9. TestNG 10. JRE System Library
      – Эрдэм Николаев
      Nov 19 at 6:22












    • Did you tried above code?
      – Suban Dhyako
      Nov 19 at 8:34










    • yep! But problem was in the latest version of Selenium 3.9.0 - 3.141.59. Entered <MobileElement> in code for some reasons.
      – Эрдэм Николаев
      Nov 21 at 6:25










    • You can use WebElement instead of MobileElement
      – Suban Dhyako
      Nov 21 at 6:29











    Your Answer






    StackExchange.ifUsing("editor", function () {
    StackExchange.using("externalEditor", function () {
    StackExchange.using("snippets", function () {
    StackExchange.snippets.init();
    });
    });
    }, "code-snippets");

    StackExchange.ready(function() {
    var channelOptions = {
    tags: "".split(" "),
    id: "1"
    };
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function() {
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled) {
    StackExchange.using("snippets", function() {
    createEditor();
    });
    }
    else {
    createEditor();
    }
    });

    function createEditor() {
    StackExchange.prepareEditor({
    heartbeatType: 'answer',
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader: {
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    },
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    });


    }
    });














    draft saved

    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53294327%2fhow-to-fix-url-definitions-in-eclipse-for-appium-server%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    2 Answers
    2






    active

    oldest

    votes








    2 Answers
    2






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes








    up vote
    0
    down vote



    accepted










    The solution to your issue is that you use latest stable version of Selenium i.e. 3.141.5



    If you're having Java project then, before adding new latest version of jar's make sure to first remove all selenium related old jar's and then add newly downloaded version of the jar's to build path.



    In case of Maven project, update the selenium dependency version to latest and run following on terminal,



    $ mvn clean install





    share|improve this answer

























      up vote
      0
      down vote



      accepted










      The solution to your issue is that you use latest stable version of Selenium i.e. 3.141.5



      If you're having Java project then, before adding new latest version of jar's make sure to first remove all selenium related old jar's and then add newly downloaded version of the jar's to build path.



      In case of Maven project, update the selenium dependency version to latest and run following on terminal,



      $ mvn clean install





      share|improve this answer























        up vote
        0
        down vote



        accepted







        up vote
        0
        down vote



        accepted






        The solution to your issue is that you use latest stable version of Selenium i.e. 3.141.5



        If you're having Java project then, before adding new latest version of jar's make sure to first remove all selenium related old jar's and then add newly downloaded version of the jar's to build path.



        In case of Maven project, update the selenium dependency version to latest and run following on terminal,



        $ mvn clean install





        share|improve this answer












        The solution to your issue is that you use latest stable version of Selenium i.e. 3.141.5



        If you're having Java project then, before adding new latest version of jar's make sure to first remove all selenium related old jar's and then add newly downloaded version of the jar's to build path.



        In case of Maven project, update the selenium dependency version to latest and run following on terminal,



        $ mvn clean install






        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Nov 19 at 7:13









        Wasiq Bhamla

        54339




        54339
























            up vote
            0
            down vote














            I suggest you to use maven project and the dependencies: java-client, selenium-java and testng.




            If you don't want to use maven project, you need to import above libraries in eclipse. For that From your Eclipse workspace, right click your project on the left pane -> Properties -> Java Build Path -> Add Jars -> add your jars there.



            Change your code as follow:



            public class FirstScript {

            public static AppiumDriver<MobileElement> driver;

            @BeforeClass
            public void setUp() throws MalformedURLException{
            //Set the Desired Capabilities
            DesiredCapabilities caps = new DesiredCapabilities();
            caps.setCapability("deviceName", "Samsung S7");
            caps.setCapability("udid", "******************"); //Give Device ID of your mobile phone
            caps.setCapability("platformName", "Android");
            caps.setCapability("platformVersion", "8.0");
            caps.setCapability("appPackage", "com.***.***");
            caps.setCapability("appActivity", "com.***.***.MainActivity");
            caps.setCapability("noReset", "true");

            driver = new AndroidDriver (new URL("http://127.0.0.1:4723/wd/hub"),caps);
            driver.manage().timeouts().implicitlyWait(10,TimeUnit.SECONDS);
            }


            }





            share|improve this answer





















            • I'm already using those librares: 1. java-client-6.1.0.jar 2. gson-2.8.5.jar 3. client-combined-3.9.0-sources.jar 4. client-combined-3.9.0.jar 5. seleium-3.9.0-nodeps-sources.jar 6. seleium-3.9.0-nodeps.jar 7. seleium-html-runner-3.9.0.jar 8. seleium-server-standalone-3.9.0.jar 9. TestNG 10. JRE System Library
              – Эрдэм Николаев
              Nov 19 at 6:22












            • Did you tried above code?
              – Suban Dhyako
              Nov 19 at 8:34










            • yep! But problem was in the latest version of Selenium 3.9.0 - 3.141.59. Entered <MobileElement> in code for some reasons.
              – Эрдэм Николаев
              Nov 21 at 6:25










            • You can use WebElement instead of MobileElement
              – Suban Dhyako
              Nov 21 at 6:29















            up vote
            0
            down vote














            I suggest you to use maven project and the dependencies: java-client, selenium-java and testng.




            If you don't want to use maven project, you need to import above libraries in eclipse. For that From your Eclipse workspace, right click your project on the left pane -> Properties -> Java Build Path -> Add Jars -> add your jars there.



            Change your code as follow:



            public class FirstScript {

            public static AppiumDriver<MobileElement> driver;

            @BeforeClass
            public void setUp() throws MalformedURLException{
            //Set the Desired Capabilities
            DesiredCapabilities caps = new DesiredCapabilities();
            caps.setCapability("deviceName", "Samsung S7");
            caps.setCapability("udid", "******************"); //Give Device ID of your mobile phone
            caps.setCapability("platformName", "Android");
            caps.setCapability("platformVersion", "8.0");
            caps.setCapability("appPackage", "com.***.***");
            caps.setCapability("appActivity", "com.***.***.MainActivity");
            caps.setCapability("noReset", "true");

            driver = new AndroidDriver (new URL("http://127.0.0.1:4723/wd/hub"),caps);
            driver.manage().timeouts().implicitlyWait(10,TimeUnit.SECONDS);
            }


            }





            share|improve this answer





















            • I'm already using those librares: 1. java-client-6.1.0.jar 2. gson-2.8.5.jar 3. client-combined-3.9.0-sources.jar 4. client-combined-3.9.0.jar 5. seleium-3.9.0-nodeps-sources.jar 6. seleium-3.9.0-nodeps.jar 7. seleium-html-runner-3.9.0.jar 8. seleium-server-standalone-3.9.0.jar 9. TestNG 10. JRE System Library
              – Эрдэм Николаев
              Nov 19 at 6:22












            • Did you tried above code?
              – Suban Dhyako
              Nov 19 at 8:34










            • yep! But problem was in the latest version of Selenium 3.9.0 - 3.141.59. Entered <MobileElement> in code for some reasons.
              – Эрдэм Николаев
              Nov 21 at 6:25










            • You can use WebElement instead of MobileElement
              – Suban Dhyako
              Nov 21 at 6:29













            up vote
            0
            down vote










            up vote
            0
            down vote










            I suggest you to use maven project and the dependencies: java-client, selenium-java and testng.




            If you don't want to use maven project, you need to import above libraries in eclipse. For that From your Eclipse workspace, right click your project on the left pane -> Properties -> Java Build Path -> Add Jars -> add your jars there.



            Change your code as follow:



            public class FirstScript {

            public static AppiumDriver<MobileElement> driver;

            @BeforeClass
            public void setUp() throws MalformedURLException{
            //Set the Desired Capabilities
            DesiredCapabilities caps = new DesiredCapabilities();
            caps.setCapability("deviceName", "Samsung S7");
            caps.setCapability("udid", "******************"); //Give Device ID of your mobile phone
            caps.setCapability("platformName", "Android");
            caps.setCapability("platformVersion", "8.0");
            caps.setCapability("appPackage", "com.***.***");
            caps.setCapability("appActivity", "com.***.***.MainActivity");
            caps.setCapability("noReset", "true");

            driver = new AndroidDriver (new URL("http://127.0.0.1:4723/wd/hub"),caps);
            driver.manage().timeouts().implicitlyWait(10,TimeUnit.SECONDS);
            }


            }





            share|improve this answer













            I suggest you to use maven project and the dependencies: java-client, selenium-java and testng.




            If you don't want to use maven project, you need to import above libraries in eclipse. For that From your Eclipse workspace, right click your project on the left pane -> Properties -> Java Build Path -> Add Jars -> add your jars there.



            Change your code as follow:



            public class FirstScript {

            public static AppiumDriver<MobileElement> driver;

            @BeforeClass
            public void setUp() throws MalformedURLException{
            //Set the Desired Capabilities
            DesiredCapabilities caps = new DesiredCapabilities();
            caps.setCapability("deviceName", "Samsung S7");
            caps.setCapability("udid", "******************"); //Give Device ID of your mobile phone
            caps.setCapability("platformName", "Android");
            caps.setCapability("platformVersion", "8.0");
            caps.setCapability("appPackage", "com.***.***");
            caps.setCapability("appActivity", "com.***.***.MainActivity");
            caps.setCapability("noReset", "true");

            driver = new AndroidDriver (new URL("http://127.0.0.1:4723/wd/hub"),caps);
            driver.manage().timeouts().implicitlyWait(10,TimeUnit.SECONDS);
            }


            }






            share|improve this answer












            share|improve this answer



            share|improve this answer










            answered Nov 14 at 7:26









            Suban Dhyako

            547115




            547115












            • I'm already using those librares: 1. java-client-6.1.0.jar 2. gson-2.8.5.jar 3. client-combined-3.9.0-sources.jar 4. client-combined-3.9.0.jar 5. seleium-3.9.0-nodeps-sources.jar 6. seleium-3.9.0-nodeps.jar 7. seleium-html-runner-3.9.0.jar 8. seleium-server-standalone-3.9.0.jar 9. TestNG 10. JRE System Library
              – Эрдэм Николаев
              Nov 19 at 6:22












            • Did you tried above code?
              – Suban Dhyako
              Nov 19 at 8:34










            • yep! But problem was in the latest version of Selenium 3.9.0 - 3.141.59. Entered <MobileElement> in code for some reasons.
              – Эрдэм Николаев
              Nov 21 at 6:25










            • You can use WebElement instead of MobileElement
              – Suban Dhyako
              Nov 21 at 6:29


















            • I'm already using those librares: 1. java-client-6.1.0.jar 2. gson-2.8.5.jar 3. client-combined-3.9.0-sources.jar 4. client-combined-3.9.0.jar 5. seleium-3.9.0-nodeps-sources.jar 6. seleium-3.9.0-nodeps.jar 7. seleium-html-runner-3.9.0.jar 8. seleium-server-standalone-3.9.0.jar 9. TestNG 10. JRE System Library
              – Эрдэм Николаев
              Nov 19 at 6:22












            • Did you tried above code?
              – Suban Dhyako
              Nov 19 at 8:34










            • yep! But problem was in the latest version of Selenium 3.9.0 - 3.141.59. Entered <MobileElement> in code for some reasons.
              – Эрдэм Николаев
              Nov 21 at 6:25










            • You can use WebElement instead of MobileElement
              – Suban Dhyako
              Nov 21 at 6:29
















            I'm already using those librares: 1. java-client-6.1.0.jar 2. gson-2.8.5.jar 3. client-combined-3.9.0-sources.jar 4. client-combined-3.9.0.jar 5. seleium-3.9.0-nodeps-sources.jar 6. seleium-3.9.0-nodeps.jar 7. seleium-html-runner-3.9.0.jar 8. seleium-server-standalone-3.9.0.jar 9. TestNG 10. JRE System Library
            – Эрдэм Николаев
            Nov 19 at 6:22






            I'm already using those librares: 1. java-client-6.1.0.jar 2. gson-2.8.5.jar 3. client-combined-3.9.0-sources.jar 4. client-combined-3.9.0.jar 5. seleium-3.9.0-nodeps-sources.jar 6. seleium-3.9.0-nodeps.jar 7. seleium-html-runner-3.9.0.jar 8. seleium-server-standalone-3.9.0.jar 9. TestNG 10. JRE System Library
            – Эрдэм Николаев
            Nov 19 at 6:22














            Did you tried above code?
            – Suban Dhyako
            Nov 19 at 8:34




            Did you tried above code?
            – Suban Dhyako
            Nov 19 at 8:34












            yep! But problem was in the latest version of Selenium 3.9.0 - 3.141.59. Entered <MobileElement> in code for some reasons.
            – Эрдэм Николаев
            Nov 21 at 6:25




            yep! But problem was in the latest version of Selenium 3.9.0 - 3.141.59. Entered <MobileElement> in code for some reasons.
            – Эрдэм Николаев
            Nov 21 at 6:25












            You can use WebElement instead of MobileElement
            – Suban Dhyako
            Nov 21 at 6:29




            You can use WebElement instead of MobileElement
            – Suban Dhyako
            Nov 21 at 6:29


















            draft saved

            draft discarded




















































            Thanks for contributing an answer to Stack Overflow!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid



            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.


            To learn more, see our tips on writing great answers.





            Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


            Please pay close attention to the following guidance:


            • Please be sure to answer the question. Provide details and share your research!

            But avoid



            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.


            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53294327%2fhow-to-fix-url-definitions-in-eclipse-for-appium-server%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            404 Error Contact Form 7 ajax form submitting

            How to know if a Active Directory user can login interactively

            TypeError: fit_transform() missing 1 required positional argument: 'X'