Add warning about localhost in Selenium Node config.

Using `127.0.0.1` for Appium's Selenium Grid node config makes the grid
server unable to contact Appium when located on a different host.
Clarified that in the docs.
This commit is contained in:
Dylan Lacey
2014-10-08 20:01:25 -07:00
parent 17304573a0
commit ef7bb4142e

View File

@@ -55,3 +55,5 @@ Valid platforms are listed [here](http://selenium.googlecode.com/git/docs/api/ja
If `url`, `host`, and `port` are not given, the config will be auto updated
to point to localhost:whatever-port-Appium-started-on.
If your Appium server is running on a different machine to your Selenium Grid server, make sure you use an external name/IP address in your `host` & `url` docs; `localhost` and `127.0.0.1` will prevent Selenium Grid from connecting correctly.