iOS automation with appium
Home Setting up Appium environment in Mac OS X Installing Appium app on Mac OS Appium doctor Simulators in XCode Capabilities for iOS automation Inpsecting the elements from Appium inspector Automating Native iOS app Automating Hybrid app Automating Web app Hooking up appium with Selenium gridSelenium grid with iOS automation using appium
You can register appium node with Selenium hub by using below command.
appium –nodeconfig iOSConfig.json -p 4723 -U 4df70d325d884031 -a 127.0.0.1
Here are the contents of iOSConfig.json file.
{
"capabilities": [
{
"browserName": "iPhone-Simulator",
"version": "9.0",
"maxInstances": 1,
"platform": "MAC"
}
],
"configuration": {
"cleanUpCycle": 3000,
"timeout": 400000,
"browserTimeout": 70000,
"hub": "https://localhost:4444/grid/register",
"host": " 127.0.0.1",
"maxSession": 1,
"port": 4723,
"hubPort": 4444,
"hubHost": "127.0.0.1",
"url": "https://127.0.0.1:4723/wd/hub",
"register": true,
"registerCycle": 6000,
"role": "node"
}
}
Web development and Automation testing
solutions delivered!!