You are here

class VisibilityTest in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/behat/mink/driver-testsuite/tests/Basic/VisibilityTest.php \Behat\Mink\Tests\Driver\Basic\VisibilityTest

Hierarchy

  • class \Behat\Mink\Tests\Driver\TestCase extends \Behat\Mink\Tests\Driver\PHPUnit_Framework_TestCase

Expanded class hierarchy of VisibilityTest

File

vendor/behat/mink/driver-testsuite/tests/Basic/VisibilityTest.php, line 7

Namespace

Behat\Mink\Tests\Driver\Basic
View source
class VisibilityTest extends TestCase {
  public function testVisibility() {
    $this
      ->getSession()
      ->visit($this
      ->pathTo('/js_test.html'));
    $webAssert = $this
      ->getAssertSession();
    $clicker = $webAssert
      ->elementExists('css', '.elements div#clicker');
    $invisible = $webAssert
      ->elementExists('css', '#invisible');
    $this
      ->assertFalse($invisible
      ->isVisible());
    $this
      ->assertTrue($clicker
      ->isVisible());
  }

}

Members

Namesort descending Modifiers Type Description Overrides
TestCase::$config private static property
TestCase::$mink private static property Mink session manager.
TestCase::checkRequirements protected function
TestCase::createDriver protected function Creates a new driver instance.
TestCase::findById protected function
TestCase::getAssertSession protected function Returns assert session.
TestCase::getConfig private static function
TestCase::getSession protected function Returns session.
TestCase::mapRemoteFilePath protected function Map remote file path.
TestCase::onNotSuccessfulTest protected function
TestCase::pathTo protected function
TestCase::safePageWait protected function Waits for a condition to be true, considering than it is successful for drivers not supporting wait().
TestCase::setUpBeforeClass public static function Initializes the test case.
TestCase::tearDown protected function
VisibilityTest::testVisibility public function