/**
  * @expectedException        \OutOfBoundsException
  * @expectedExceptionMessage Crawler "foo" is not registered
  */
 public function testMissingCrawler()
 {
     $this->factory->getCrawler('foo');
 }
예제 #2
0
 /**
  * @param string $crawler
  *
  * @return CrawlerInterface
  */
 protected function findCrawler($crawler)
 {
     return $this->factory->getCrawler($crawler);
 }