diff vendor/behat/mink-selenium2-driver/tests/Custom/TimeoutTest.php @ 14:1fec387a4317

Update Drupal core to 8.5.2 via Composer
author Chris Cannam
date Mon, 23 Apr 2018 09:46:53 +0100
parents
children 129ea1e6d783
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/vendor/behat/mink-selenium2-driver/tests/Custom/TimeoutTest.php	Mon Apr 23 09:46:53 2018 +0100
@@ -0,0 +1,39 @@
+<?php
+
+namespace Behat\Mink\Tests\Driver\Custom;
+
+use Behat\Mink\Tests\Driver\TestCase;
+
+class TimeoutTest extends TestCase
+{
+    /**
+     * @expectedException \Behat\Mink\Exception\DriverException
+     */
+    public function testInvalidTimeoutSettingThrowsException()
+    {
+        $this->getSession()->getDriver()->setTimeouts(array('invalid' => 0));
+    }
+
+    public function testShortTimeoutDoesNotWaitForElementToAppear()
+    {
+        $this->getSession()->getDriver()->setTimeouts(array('implicit' => 0));
+
+        $this->getSession()->visit($this->pathTo('/js_test.html'));
+        $this->findById('waitable')->click();
+
+        $element = $this->getSession()->getPage()->find('css', '#waitable > div');
+
+        $this->assertNull($element);
+    }
+
+    public function testLongTimeoutWaitsForElementToAppear()
+    {
+        $this->getSession()->getDriver()->setTimeouts(array('implicit' => 5000));
+
+        $this->getSession()->visit($this->pathTo('/js_test.html'));
+        $this->findById('waitable')->click();
+        $element = $this->getSession()->getPage()->find('css', '#waitable > div');
+
+        $this->assertNotNull($element);
+    }
+}