Hi Thanks Sebv… now ios-webkit-proxy works fine with no errors.
But still i coudn`t succed with ios device safari test case execution.
Issue is
SafariLauncher loads and launches Safari in ios device and then navigates to the
default page. After this it is not navigating to specified url.
DesiredCapabilities capabilitiesIOS = new DesiredCapabilities();
capabilitiesIOS.setCapability(CapabilityType.BROWSER_NAME,“iOS”);
capabilitiesIOS.setCapability(“platformName”, “iOS”);
capabilitiesIOS.setCapability(“version”,“8.1”); capabilitiesIOS.setCapability(“app”,"/users/Library/Developer/Xcode/DerivedData/SafariLauncher-cgbztfhtwfbpbhdfdrqugggksjjp/Build/Products/Debug-iphonesimulator/SafariLauncher.app");
capabilitiesIOS.setCapability(“deviceName”, “iPad”);
capabilitiesIOS.setCapability(“autowebview”,true);
capabilitiesIOS.setCapability(“udid”, “b331d45d209fd3b2e118fbfd68965c5f7e472b49”);
Thread.sleep(30000);
driver = new RemoteWebDriver(new URL(“http://0.0.0.0:4723/wd/hub”),capabilitiesIOS);
log.info(“after…”);
Thread.sleep(5000);
driver.get(“https://www.google.co.in/”);
Please help me to resolve this issue.
Thanks,
Rashmi