protected function WebTestBase::assertRaw

Pass if the raw text IS found on the loaded page, fail otherwise. Raw text refers to the raw HTML that the page generated.

Parameters

$raw: Raw (HTML) string to look for.

$message: (optional) A message to display with the assertion. Do not translate messages: use format_string() to embed variables in the message text, not t(). If left blank, a default message will be displayed.

$group: (optional) The group this message is in, which is displayed in a column in test output. Use 'Debug' to indicate this is debugging output. Do not translate this string. Defaults to 'Other'; most tests do not override this default.

Return value

TRUE on pass, FALSE on fail.

250 calls to WebTestBase::assertRaw()
AdminMetaTagTest::testMetaTag in drupal/core/modules/system/lib/Drupal/system/Tests/System/AdminMetaTagTest.php
Verify that the meta tag HTML is generated correctly.
AggregatorTestBase::createFeed in drupal/core/modules/aggregator/lib/Drupal/aggregator/Tests/AggregatorTestBase.php
Create an aggregator feed (simulate form submission on admin/config/services/aggregator/add/feed).
AggregatorTestBase::deleteFeed in drupal/core/modules/aggregator/lib/Drupal/aggregator/Tests/AggregatorTestBase.php
Delete an aggregator feed.
AggregatorTestBase::removeFeedItems in drupal/core/modules/aggregator/lib/Drupal/aggregator/Tests/AggregatorTestBase.php
Confirm item removal from a feed.
BasicTest::testViewsWizardAndListing in drupal/core/modules/views/lib/Drupal/views/Tests/Wizard/BasicTest.php

... See full list

File

drupal/core/modules/simpletest/lib/Drupal/simpletest/WebTestBase.php, line 2131
Definition of Drupal\simpletest\WebTestBase.

Class

WebTestBase
Test case for typical Drupal tests.

Namespace

Drupal\simpletest

Code

protected function assertRaw($raw, $message = '', $group = 'Other') {
  if (!$message) {
    $message = t('Raw "@raw" found', array(
      '@raw' => $raw,
    ));
  }
  return $this
    ->assert(strpos($this
    ->drupalGetContent(), $raw) !== FALSE, $message, $group);
}