You are here

public function FormTest::testSubmitWithoutAFormButton in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/dom-crawler/Tests/FormTest.php \Symfony\Component\DomCrawler\Tests\FormTest::testSubmitWithoutAFormButton()

File

vendor/symfony/dom-crawler/Tests/FormTest.php, line 661

Class

FormTest

Namespace

Symfony\Component\DomCrawler\Tests

Code

public function testSubmitWithoutAFormButton() {
  $dom = new \DOMDocument();
  $dom
    ->loadHTML('
            <html>
                <form>
                    <input type="foo" />
                </form>
            </html>
        ');
  $nodes = $dom
    ->getElementsByTagName('form');
  $form = new Form($nodes
    ->item(0), 'http://example.com');
  $this
    ->assertSame($nodes
    ->item(0), $form
    ->getFormNode(), '->getFormNode() returns the form node associated with this form');
}