You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 12, 2022. It is now read-only.
When I build your project from visual studio and run it on the Windows Phone 8.1 Emulator, I see that it is listening on an URL. But I am not able to connect to it and also not able to find this WindowsPhoneDriverServer.exe anywhere.
I am using the following test:
try {
DesiredCapabilities desiredCapabilities = new DesiredCapabilities();
desiredCapabilities.setCapability("platform", "Windows 8.1");
desiredCapabilities.setCapability("version", "11");
desiredCapabilities.setCapability("browserName", "");
WebDriver driver = new RemoteWebDriver(new URL("http://169.254.80.80:8080"),DesiredCapabilities.internetExplorer());
driver.navigate().to("http://codeplex.com");
// driver.get("http://google.com");
System.out.print("I can see its working and dont complain me");
}
catch (MalformedURLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
Hello,
When I build your project from visual studio and run it on the Windows Phone 8.1 Emulator, I see that it is listening on an URL. But I am not able to connect to it and also not able to find this WindowsPhoneDriverServer.exe anywhere.
I am using the following test:
try {
DesiredCapabilities desiredCapabilities = new DesiredCapabilities();
desiredCapabilities.setCapability("platform", "Windows 8.1");
desiredCapabilities.setCapability("version", "11");
desiredCapabilities.setCapability("browserName", "");
WebDriver driver = new RemoteWebDriver(new URL("http://169.254.80.80:8080"),DesiredCapabilities.internetExplorer());
driver.navigate().to("http://codeplex.com");
// driver.get("http://google.com");
System.out.print("I can see its working and dont complain me");
}
catch (MalformedURLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
How shall I access this driver?