You are here

public function ConfigTranslationListUiTest::doSettingsPageTest in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/modules/config_translation/src/Tests/ConfigTranslationListUiTest.php \Drupal\config_translation\Tests\ConfigTranslationListUiTest::doSettingsPageTest()

Tests a given settings page for the translate operation.

Parameters

string $link: URL of the settings page to test.

1 call to ConfigTranslationListUiTest::doSettingsPageTest()
ConfigTranslationListUiTest::testTranslateOperationInListUi in core/modules/config_translation/src/Tests/ConfigTranslationListUiTest.php
Tests if translate link is added to operations in all configuration lists.

File

core/modules/config_translation/src/Tests/ConfigTranslationListUiTest.php, line 458
Contains \Drupal\config_translation\Tests\ConfigTranslationListUiTest.

Class

ConfigTranslationListUiTest
Visit all lists.

Namespace

Drupal\config_translation\Tests

Code

public function doSettingsPageTest($link) {

  // Get the settings page.
  $this
    ->drupalGet($link);
  $translate_link = $link . '/translate';

  // Test if the link to translate the settings page is present.
  $this
    ->assertLinkByHref($translate_link);

  // Test if the link to translate actually goes to the translate page.
  $this
    ->drupalGet($translate_link);
  $this
    ->assertRaw('<th>' . t('Language') . '</th>');
}