class NavigationTest in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/behat/mink/driver-testsuite/tests/Basic/NavigationTest.php \Behat\Mink\Tests\Driver\Basic\NavigationTest
Hierarchy
- class \Behat\Mink\Tests\Driver\TestCase extends \Behat\Mink\Tests\Driver\PHPUnit_Framework_TestCase
- class \Behat\Mink\Tests\Driver\Basic\NavigationTest
Expanded class hierarchy of NavigationTest
File
- vendor/
behat/ mink/ driver-testsuite/ tests/ Basic/ NavigationTest.php, line 7
Namespace
Behat\Mink\Tests\Driver\BasicView source
class NavigationTest extends TestCase {
public function testRedirect() {
$this
->getSession()
->visit($this
->pathTo('/redirector.php'));
$this
->assertEquals($this
->pathTo('/redirect_destination.html'), $this
->getSession()
->getCurrentUrl());
}
public function testPageControls() {
$this
->getSession()
->visit($this
->pathTo('/randomizer.php'));
$number1 = $this
->getAssertSession()
->elementExists('css', '#number')
->getText();
$this
->getSession()
->reload();
$number2 = $this
->getAssertSession()
->elementExists('css', '#number')
->getText();
$this
->assertNotEquals($number1, $number2);
$this
->getSession()
->visit($this
->pathTo('/links.html'));
$this
->getSession()
->getPage()
->clickLink('Random number page');
$this
->assertEquals($this
->pathTo('/randomizer.php'), $this
->getSession()
->getCurrentUrl());
$this
->getSession()
->back();
$this
->assertEquals($this
->pathTo('/links.html'), $this
->getSession()
->getCurrentUrl());
$this
->getSession()
->forward();
$this
->assertEquals($this
->pathTo('/randomizer.php'), $this
->getSession()
->getCurrentUrl());
}
public function testLinks() {
$this
->getSession()
->visit($this
->pathTo('/links.html'));
$page = $this
->getSession()
->getPage();
$link = $page
->findLink('Redirect me to');
$this
->assertNotNull($link);
$this
->assertRegExp('/redirector\\.php$/', $link
->getAttribute('href'));
$link
->click();
$this
->assertEquals($this
->pathTo('/redirect_destination.html'), $this
->getSession()
->getCurrentUrl());
$this
->getSession()
->visit($this
->pathTo('/links.html'));
$page = $this
->getSession()
->getPage();
$link = $page
->findLink('basic form image');
$this
->assertNotNull($link);
$this
->assertRegExp('/basic_form\\.html$/', $link
->getAttribute('href'));
$link
->click();
$this
->assertEquals($this
->pathTo('/basic_form.html'), $this
->getSession()
->getCurrentUrl());
$this
->getSession()
->visit($this
->pathTo('/links.html'));
$page = $this
->getSession()
->getPage();
$link = $page
->findLink('Link with a ');
$this
->assertNotNull($link);
$this
->assertRegExp('/links\\.html\\?quoted$/', $link
->getAttribute('href'));
$link
->click();
$this
->assertEquals($this
->pathTo('/links.html?quoted'), $this
->getSession()
->getCurrentUrl());
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
NavigationTest:: |
public | function | ||
NavigationTest:: |
public | function | ||
NavigationTest:: |
public | function | ||
TestCase:: |
private static | property | ||
TestCase:: |
private static | property | Mink session manager. | |
TestCase:: |
protected | function | ||
TestCase:: |
protected | function | Creates a new driver instance. | |
TestCase:: |
protected | function | ||
TestCase:: |
protected | function | Returns assert session. | |
TestCase:: |
private static | function | ||
TestCase:: |
protected | function | Returns session. | |
TestCase:: |
protected | function | Map remote file path. | |
TestCase:: |
protected | function | ||
TestCase:: |
protected | function | ||
TestCase:: |
protected | function | Waits for a condition to be true, considering than it is successful for drivers not supporting wait(). | |
TestCase:: |
public static | function | Initializes the test case. | |
TestCase:: |
protected | function |