Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用 Selenium 和 PHPUnit。在我的测试用例中,我使用
PHPUnit_Extensions_SeleniumTestCase::waitForElementPresent($xpath);
等待一段时间,直到指定的元素$xpath出现。有什么办法可以改变最长等待时间吗?
$xpath
waitForElementPresent()有两个参数。第一个是定位器,另一个是超时(以毫秒为单位) 。
waitForElementPresent()
例子 :
waitForElementPresent("Your xpath","80000").
这将等待给定的 xpath 80 秒。