You are here

protected function LiveblogTest::liveblogSetBody in Thunder 8.2

Same name and namespace in other branches
  1. 8.3 tests/src/FunctionalJavascript/Integration/LiveblogTest.php \Drupal\Tests\thunder\FunctionalJavascript\Integration\LiveblogTest::liveblogSetBody()
  2. 8.4 tests/src/FunctionalJavascript/Integration/LiveblogTest.php \Drupal\Tests\thunder\FunctionalJavascript\Integration\LiveblogTest::liveblogSetBody()
  3. 6.0.x tests/src/FunctionalJavascript/Integration/LiveblogTest.php \Drupal\Tests\thunder\FunctionalJavascript\Integration\LiveblogTest::liveblogSetBody()
  4. 6.1.x tests/src/FunctionalJavascript/Integration/LiveblogTest.php \Drupal\Tests\thunder\FunctionalJavascript\Integration\LiveblogTest::liveblogSetBody()

Set the body of a liveblog post.

Parameters

string $body: The body.

1 call to LiveblogTest::liveblogSetBody()
LiveblogTest::testWithPusher in tests/src/FunctionalJavascript/Integration/LiveblogTest.php
Testing of module integration.

File

tests/src/FunctionalJavascript/Integration/LiveblogTest.php, line 40

Class

LiveblogTest
Testing integration of "liveblog" module.

Namespace

Drupal\Tests\thunder\FunctionalJavascript\Integration

Code

protected function liveblogSetBody($body) {
  $this
    ->fillCkEditor("textarea[name='body[0][value]']", $body);
}