I'm having some difficulty connecting Appium to Selenium Grid.
Here's what I have for my nodeconfig file:
{
"capabilities":
[
{
"browserName":“iPhone5”,
"version”:”6.1,
"maxInstances": 1,
"platform”:”MAC”
}
],
"configuration":
{
"cleanUpCycle":2000,
"timeout":30000,
"proxy": "org.openqa.grid.selenium.proxy.DefaultRemoteProxy",
"url":`"http://127.0.0.1:4725/wd/hub",`
"host": 127.0.0.1,
"port": 4723,
"maxSession": 1,
"register": true,
"hub": `“http://192.168.28.74:4444/grid/register”`
}
}
Using the Appium app, I click on launch. It doesn't throw any errors but I do not see it on the Grid console page.
If anyone has any experience connecting Appium on a Mac to the Grid, can you walk me through it?