I have a loop that checks for the existence of urls. If one does not exist Selenium exits: *XHR ERROR: URL = http://localhost/pages/156.php Response_Code = 404 Error_Message = Not Found.*
I istisna yakalamak ise:
try {
$this->selenium->open($url);
}
catch(PHPUnit_Framework_Exception $e) { echo "caught\n"; }
Anything i do afterwards gives me this error: ERROR Server Exception: sessionId should not be null; has this session been started yet?
Hatta beklendiği gibi istisna ayarlamak için çalıştı:
$this->selenium->setExpectedException('PHPUnit_Framework_Exception');
Ama yine oturum durdurulur ve test tamamlanır. Nasıl Selenyum adresler test tutmak yapabilirsiniz? Teşekkürler.