如何在selenium打开命令之前等待测试phpunit?

时间:2013-10-01 08:19:58

标签: unit-testing testing selenium phpunit selenium-rc

我正在为包含谷歌地图滑块的联系人编写测试(PHPUnit和selenium)。 我在测试中写了以下函数。

public function testContact() { $this->open("/contact"); $this->assertTrue($this->isElementPresent("id=username")); $this->assertTrue($this->isElementPresent("id=useremail")); $this->assertTrue($this->isElementPresent("id=usermessage")); $this->assertTrue($this->isElementPresent("css=input.submit_button")); }

但我得到了错误信息 Timed out after 30000ms并在$this->open ("/contact");显示错误行 我如何等待打开我的测试页?

1 个答案:

答案 0 :(得分:1)

现在我可以像$this-setTimeout(5000);

那样等待