我想使用 selenium webdriver (java) 测试一个站点,但是该站点包含 ajax 并且 HTMLUnit 看不到 ajax 内容。
有解决方法吗?
例子:
WebDriver driver = new HtmlUnitDriver(BrowserVersion.FIREFOX_3_6);
//login into your account
this.login(driver);
//click on edit Profile Link into an ajax-loaded tab
driver.findElement(By.id("editProfile")).click();
//Result: org.openqa.selenium.NoSuchElementException