function DisplayTest::toggleContextualTriggerVisibility
Toggles the visibility of a contextual trigger.
Parameters
string $selector: The selector for the element that contains the contextual Rink.
1 call to DisplayTest::toggleContextualTriggerVisibility()
- DisplayTest::testPageContextualLinks in core/
modules/ views_ui/ tests/ src/ FunctionalJavascript/ DisplayTest.php  - Tests contextual links on Views page displays.
 
File
- 
              core/
modules/ views_ui/ tests/ src/ FunctionalJavascript/ DisplayTest.php, line 152  
Class
- DisplayTest
 - Tests the display UI.
 
Namespace
Drupal\Tests\views_ui\FunctionalJavascriptCode
protected function toggleContextualTriggerVisibility($selector) {
  // Hovering over the element itself with should be enough, but does not
  // work. Manually remove the visually-hidden class.
  $this->getSession()
    ->executeScript("jQuery('{$selector} .contextual .trigger').toggleClass('visually-hidden');");
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.