You are here

protected function LingotekTestBase::goToContentBulkManagementForm in Lingotek Translation 8

Go to the content bulk management form.

Parameters

string $entity_type_id: Entity type ID we want to manage in bulk. By default is node.

56 calls to LingotekTestBase::goToContentBulkManagementForm()
ChineseBulkTranslationTest::testNodeTranslationUsingLinks in src/Tests/ChineseBulkTranslationTest.php
Tests that a node can be translated using the links on the management page.
LingotekBulkDeleteTest::testNodeBulkDelete in src/Tests/LingotekBulkDeleteTest.php
Tests that a node can be deleted in the management page.
LingotekBulkDeleteTest::testTaxonomyTermBulkDelete in src/Tests/LingotekBulkDeleteTest.php
Tests that a taxonomy term cannot be deleted in the management page.
LingotekContentTypeNotificationCallbackTest::testAutomatedNotificationContentTypeTranslation in src/Tests/LingotekContentTypeNotificationCallbackTest.php
Tests that a node can be translated using the links on the management page.
LingotekEntityTestBulkTranslationTest::testCheckSourceStatusNotCompleted in src/Tests/LingotekEntityTestBulkTranslationTest.php
Tests that all the statuses are set when using the Check Translations action.

... See full list

File

src/Tests/LingotekTestBase.php, line 94

Class

LingotekTestBase
Base class for Lingotek test. Performs authorization of the account.

Namespace

Drupal\lingotek\Tests

Code

protected function goToContentBulkManagementForm($entity_type_id = 'node') {
  $this
    ->drupalGet('admin/lingotek/manage/' . $entity_type_id);
}