The post Appium | Automate iOS Application Using Testmate appeared first on TestMate.
]]>Setup
Read more about the selenium grid here.
'Reset the capabilities
app.InitializeOptions()
'Set the platform name
app.SetCapability "platformName", "iOS"
'set Device name
app.SetCapability "deviceName", "iPhone 7"
'Set Platform version
app.SetCapability "platformVersion", "11.2"
'set browser name
app.SetCapability "browserName", "Safari"
'Get IoS with Timeout Set as 300 seconds
Call app.GetIOSDriver("http://192.168.50.128:4723/wd/hub",300)
'Navigate to the URL
Call app.NavigateToUrl("http://www.google.com")
'Search the keyword
app.SendKeys "name::q", "Testmate Appium"
'Goto Teaser for Testmate
Call app.NavigateToUrl("https://www.youtube.com/watch?v=kijKozek5zs")
The post Appium | Automate iOS Application Using Testmate appeared first on TestMate.
]]>