public function TermContextualLinksTest::testTermContextualLinks in Drupal 9
Same name and namespace in other branches
- 8 core/modules/taxonomy/tests/src/Functional/TermContextualLinksTest.php \Drupal\Tests\taxonomy\Functional\TermContextualLinksTest::testTermContextualLinks()
Tests contextual links.
File
- core/
modules/ taxonomy/ tests/ src/ Functional/ TermContextualLinksTest.php, line 27
Class
- TermContextualLinksTest
- Tests views contextual links on terms.
Namespace
Drupal\Tests\taxonomy\FunctionalCode
public function testTermContextualLinks() {
$vocabulary = $this
->createVocabulary();
$term = $this
->createTerm($vocabulary);
$user = $this
->drupalCreateUser([
'administer taxonomy',
'access contextual links',
]);
$this
->drupalLogin($user);
$this
->drupalGet('taxonomy/term/' . $term
->id());
$this
->assertSession()
->elementAttributeContains('css', 'div[data-contextual-id]', 'data-contextual-id', 'taxonomy_term:taxonomy_term=' . $term
->id() . ':');
}