function JSInteractionTest::testNotClickable
Assert an exception is thrown when the blocker element is never removed.
File
- 
              core/
tests/ Drupal/ FunctionalJavascriptTests/ Tests/ JSInteractionTest.php, line 34  
Class
- JSInteractionTest
 - Tests fault tolerant interactions.
 
Namespace
Drupal\FunctionalJavascriptTests\TestsCode
public function testNotClickable() : void {
  $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.