如何在RC中编辑waitForPageToLoad时间

时间:2011-11-29 07:46:13

标签: java firefox selenium-rc

我正在尝试使用设置方法

打开页面
public void setUp() throws Exception {
    selenium = new DefaultSelenium("localhost", 4444, "*chrome",
                                   "http://www.jobsite.co.uk/");
    selenium.start();
}

@Test
public void testCreateCustomer() throws Exception {
    ProjectSpecificScripts1 pss = new ProjectSpecificScripts1(this.selenium,
                                              this.getClass().getSimpleName());
    pss.sele = this.selenium;
    selenium.open("/");
}

但是我收到了一个错误:

  

com.thoughtworks.selenium.SeleniumException:30000ms后超时    在com.thoughtworks.selenium.HttpCommandProcessor.throwAssertionFailureExceptionOrError(HttpCommandProcessor.java:97“

有时页面会打开,但有时我会收到“30000ms后超时”错误。我无法找到定义设置方法的位置,或者如何编辑pageLoadTime

1 个答案:

答案 0 :(得分:0)

你可以使用这样的方法。

selenium.waitForPageToLoad("40000");