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
appium appium-android
add a comment |
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
appium appium-android
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
add a comment |
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
appium appium-android
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
appium appium-android
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
add a comment |
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
add a comment |
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
add a comment |
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);
}
}
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
add a comment |
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
add a comment |
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
add a comment |
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
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
answered Nov 19 at 7:13
Wasiq Bhamla
54339
54339
add a comment |
add a comment |
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);
}
}
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
add a comment |
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);
}
}
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
add a comment |
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);
}
}
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);
}
}
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
add a comment |
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
add a comment |
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
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