Example #1
0
 /**
  * @covers ::getFilesXPath
  */
 public function testGetFilesMathers()
 {
     $fieldsXpath = Form::getFilesXPath();
     $result = $this->crawler->query($fieldsXpath);
     $this->assertEquals(2, $result->length);
     $this->assertMatchesSelector('input#file', $result->item(0));
     $this->assertMatchesSelector('input#other-file', $result->item(1));
 }