我正在使用Facebook编写的 Selenium 2 Webdriver
我正在尝试检查当前 URL 是否等于硬编码 URL,但我的代码不起作用:
$司机->等待(3)->直到(
WebDriverExpectedCondition::presenceOfAllElementsLocatedBy( $url = $driver->getCurrentURL(); if($url == 'http://myurl.com') { echo 'yes correct url'; } )
);