我正在尝试使用selenium在android中进行移动自动化测试的示例项目。
从链接http://selendroid.io/mobileWeb.html,我已经启动了selenium独立服务器,并启动了Android模拟器。
但是仿真器设备未列在selenium服务器的受支持设备中。
检查selenium服务器中的模拟器详细信息时http://localhost:4444/wd/hub/status
{"status":0,"value":{"supportedApps":[{"appId":"io.selendroid.androiddriver:0.10.0","mainActivity":"io.selendroid.androiddriver.WebViewActivity","basePackage":"io.selendroid.androiddriver"},{"appId":"org.openqa.selenium.android.app:","mainActivity":"org.openqa.selenium.android.app.MainActivity","basePackage":"org.openqa.selenium.android.app"}],"os":{"arch":"x86","name":"Windows 7","version":"6.1"},"build":{"browserName":"selendroid","version":"0.10.0"},"supportedDevices":[]}}
supportedDevices":[]
即使添加了从链接http://www.abodeqa.com/2013/05/08/configuring-android-webdriver-in-eclipse/指定的模拟器,支持的设备也会列为空。
如何将android模拟器附加并列出到selenium服务器。
任何建议都会有很大帮助。