提问者:小点点

Selenium WebDriver 设置 ImplicitlyWait 什么都不做


这是我在 Java 中的全部测试类,减去导入。

public class GoogleTest {

private WebDriver driver;

@Before
public void setUp() {
    driver = new FirefoxDriver();
    driver.manage().timeouts().implicitlyWait(5, TimeUnit.SECONDS);
}

@Test
public void testGoogleTest() throws Exception {
    driver.get("http://www.google.com");
    driver.findElement(By.id("I don't exist"));
}

@After
public void tearDown() throws Exception {
    driver.quit();
    }
}

共1个答案

匿名用户

这似乎是硒 2.25 和硒 2.26 的错误,因此请尝试更新到 2.27