我正在为包含谷歌地图滑块的联系人编写测试(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");
显示错误行
我如何等待打开我的测试页?
答案 0 :(得分:1)
现在我可以像$this-setTimeout(5000);