You are here

public function WysiwygSubContext::iFillInTheWysiwygEditor in Panopoly 8.2

Same name and namespace in other branches
  1. 7 modules/panopoly/panopoly_test/behat/steps/panopoly_test_wysiwyg.behat.inc \WysiwygSubContext::iFillInTheWysiwygEditor()

Fills in the WYSIWYG editor with text.

@When I fill in the :instanceId WYSIWYG editor with :text

File

modules/panopoly/panopoly_test/behat/steps/panopoly_test_wysiwyg.behat.inc, line 183
Provide Behat step-definitions for WYSIWYG editor.

Class

WysiwygSubContext
Behat subcontext for testing WYSIWYG.

Code

public function iFillInTheWysiwygEditor($instanceId, $text) {
  $instance = $this
    ->getWysiwygInstance($instanceId);
  $this
    ->getSession()
    ->executeScript("{$instance}.setContent(\"{$text}\");");
}