public function NodeElementTest::testGetAttribute in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/behat/mink/tests/Element/NodeElementTest.php \Behat\Mink\Tests\Element\NodeElementTest::testGetAttribute()
File
- vendor/
behat/ mink/ tests/ Element/ NodeElementTest.php, line 137
Class
Namespace
Behat\Mink\Tests\ElementCode
public function testGetAttribute() {
$expected = 'http://...';
$node = new NodeElement('input_tag', $this->session);
$this->driver
->expects($this
->once())
->method('getAttribute')
->with('input_tag', 'href')
->will($this
->returnValue($expected));
$this
->assertEquals($expected, $node
->getAttribute('href'));
}