我想創建一個測試用例來測試Android模擬器上的Andriod瀏覽器中我的Web應用程序。 我遵循「https://code.google.com/p/selenium/wiki/AndroidDriver」中顯示的所有步驟。 但我得到「HTTP錯誤404 - 問題訪問/上下文」。問題訪問Android模擬器上的遠程Web服務器
import junit.framework.TestCase;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.android.AndroidDriver;
public class TestAndroidWebDriver extends TestCase {
public void testAndroid() throws Exception {
WebDriver driver = new AndroidDriver();
driver.get("http://server.com/context");
String title = driver.getTitle();
assertTrue("Got title: " + title, title.contains("Title"));
driver.close();
driver.quit();
}
}
重新啓動我的機器並使用IP地址的網址,它的工作。 – Tech5