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()2 つの引数を取ります。最初のものはロケーターで、もう 1 つはTimeout in millisecondsです。
waitForElementPresent()
例 :
waitForElementPresent("Your xpath","80000").
これは、指定された xpath を 80 秒間待機します。