function JSInteractionTest::testNotClickable

Same name and namespace in other branches
  1. 10 core/tests/Drupal/FunctionalJavascriptTests/Tests/JSInteractionTest.php \Drupal\FunctionalJavascriptTests\Tests\JSInteractionTest::testNotClickable()
  2. 11.x core/tests/Drupal/FunctionalJavascriptTests/Tests/JSInteractionTest.php \Drupal\FunctionalJavascriptTests\Tests\JSInteractionTest::testNotClickable()

Assert an exception is thrown when the blocker element is never removed.

File

core/tests/Drupal/FunctionalJavascriptTests/Tests/JSInteractionTest.php, line 30

Class

JSInteractionTest
Tests fault tolerant interactions.

Namespace

Drupal\FunctionalJavascriptTests\Tests

Code

public function testNotClickable() {
    $this->expectException(Exception::class);
    $this->drupalGet('/js_interaction_test');
    $this->assertSession()
        ->elementExists('named', [
        'link',
        'Target link',
    ])
        ->click();
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.