You are here

protected function LingotekTestBase::goToContentBulkManagementForm in Lingotek Translation 3.6.x

Same name and namespace in other branches
  1. 8.2 tests/src/Functional/LingotekTestBase.php \Drupal\Tests\lingotek\Functional\LingotekTestBase::goToContentBulkManagementForm()
  2. 4.0.x tests/src/Functional/LingotekTestBase.php \Drupal\Tests\lingotek\Functional\LingotekTestBase::goToContentBulkManagementForm()
  3. 3.0.x tests/src/Functional/LingotekTestBase.php \Drupal\Tests\lingotek\Functional\LingotekTestBase::goToContentBulkManagementForm()
  4. 3.1.x tests/src/Functional/LingotekTestBase.php \Drupal\Tests\lingotek\Functional\LingotekTestBase::goToContentBulkManagementForm()
  5. 3.2.x tests/src/Functional/LingotekTestBase.php \Drupal\Tests\lingotek\Functional\LingotekTestBase::goToContentBulkManagementForm()
  6. 3.3.x tests/src/Functional/LingotekTestBase.php \Drupal\Tests\lingotek\Functional\LingotekTestBase::goToContentBulkManagementForm()
  7. 3.4.x tests/src/Functional/LingotekTestBase.php \Drupal\Tests\lingotek\Functional\LingotekTestBase::goToContentBulkManagementForm()
  8. 3.5.x tests/src/Functional/LingotekTestBase.php \Drupal\Tests\lingotek\Functional\LingotekTestBase::goToContentBulkManagementForm()
  9. 3.7.x tests/src/Functional/LingotekTestBase.php \Drupal\Tests\lingotek\Functional\LingotekTestBase::goToContentBulkManagementForm()
  10. 3.8.x tests/src/Functional/LingotekTestBase.php \Drupal\Tests\lingotek\Functional\LingotekTestBase::goToContentBulkManagementForm()

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.

string $prefix: The prefix if we want to visit the page in a different locale.

210 calls to LingotekTestBase::goToContentBulkManagementForm()
ChineseBulkTranslationTest::testNodeTranslationUsingLinks in tests/src/Functional/ChineseBulkTranslationTest.php
Tests that a node can be translated using the links on the management page.
LingotekBulkDeleteTest::testNodeBulkDelete in tests/src/Functional/LingotekBulkDeleteTest.php
Tests that a node can be deleted in the management page.
LingotekBulkDeleteTest::testTaxonomyTermBulkDelete in tests/src/Functional/LingotekBulkDeleteTest.php
Tests that a taxonomy term cannot be deleted in the management page.
LingotekContentEntityGetProfileHookTest::testGetProfileWithoutParentProfile in tests/src/Functional/LingotekContentEntityGetProfileHookTest.php
Tests that a profile can be overridden before uploading.
LingotekContentEntityGetProfileHookTest::testProfileWithNullProfile in tests/src/Functional/LingotekContentEntityGetProfileHookTest.php
Tests that a profile can be overridden before uploading.

... See full list

File

tests/src/Functional/LingotekTestBase.php, line 171

Class

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

Namespace

Drupal\Tests\lingotek\Functional

Code

protected function goToContentBulkManagementForm($entity_type_id = 'node', $prefix = NULL) {
  $this
    ->drupalGet($this
    ->getContentBulkManagementFormUrl($entity_type_id, $prefix));
}