我对硒有疑问。在下面的测试中,它应该去网站,拿一个产品,把它加入购物车,然后去购物车。在这两者之间,它等待一些元素出现。
在我的机器上,测试工作正常,直到将产品添加到购物车。在此之后,一个 div 被 ajax 填充并且测试应该在那里等待一个元素。该元素出现在浏览器中,但测试继续等待。甚至超时似乎也不足以打扰它。
如果我改为等待wait.until(pause(2));
或设置 driver.manage().timeouts().implicitlyWait(2, TimeUnit.SECONDS);
一切正常,但这不是正确的解决方案。
任何想法?
我的系统:
MacOS X 10.8.2 或 Windows 7(64 位)
火狐 17.0.1
Java 1.6、JUnit 4.10、selenium-api-2.25.0、selenium-support-2.25.0、selenium-firefox-driver-2.25.0、guava-12.0
我的测试:
import static org.openqa.selenium.support.ui.ExpectedConditions.elementToBeClickable;
import javax.annotation.Nullable;
import org.junit.Test;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.openqa.selenium.support.ui.WebDriverWait;
import com.google.common.base.Function;
public class TestSomeWebsite {
@Test
public void test() throws Exception {
FirefoxDriver driver = new FirefoxDriver();
WebDriverWait wait = new WebDriverWait(driver, 30);
driver.get("http://www.obi.de");
// take first product
driver.findElement(By.cssSelector("p.product_desc > a")).click();
// add to cart
wait.until(elementToBeClickable(By.id("addtocart")));
driver.findElement(By.id("addtocart")).submit();
// go to cart
/** everything fine by now **/
wait.until(elementToBeClickable(By.partialLinkText("Zum Warenkorb")));
/** we never come to this point :( **/
driver.findElement(By.partialLinkText("Zum Warenkorb")).click();
}
private Function<WebDriver, Object> pause(final int time) {
return new Function<WebDriver, Object>() {
int count = 0;
@Nullable
public Object apply(@Nullable WebDriver input) {
count++;
return count >= time;
}
};
}
}