function JSInteractionTest::testFieldValueNotSettable
Assert an exception is thrown when the field is never enabled.
File
- 
              core/
tests/ Drupal/ FunctionalJavascriptTests/ Tests/ JSInteractionTest.php, line 41  
Class
- JSInteractionTest
 - Tests fault tolerant interactions.
 
Namespace
Drupal\FunctionalJavascriptTests\TestsCode
public function testFieldValueNotSettable() : void {
  $this->expectException(Exception::class);
  $this->drupalGet('/js_interaction_test');
  $this->assertSession()
    ->fieldExists('target_field')
    ->setValue('Test');
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.