You are here

protected function TableDragTest::findWeightsToggle in Drupal 8

Same name and namespace in other branches
  1. 9 core/tests/Drupal/FunctionalJavascriptTests/TableDrag/TableDragTest.php \Drupal\FunctionalJavascriptTests\TableDrag\TableDragTest::findWeightsToggle()

Finds the show/hide weight toggle element.

Parameters

string $expected_text: The expected text on the element.

Return value

\Behat\Mink\Element\NodeElement The toggle element.

1 method overrides TableDragTest::findWeightsToggle()
ClaroTableDragTest::findWeightsToggle in core/tests/Drupal/FunctionalJavascriptTests/Theme/ClaroTableDragTest.php
Finds the show/hide weight toggle element.

File

core/tests/Drupal/FunctionalJavascriptTests/TableDrag/TableDragTest.php, line 382

Class

TableDragTest
Tests draggable table.

Namespace

Drupal\FunctionalJavascriptTests\TableDrag

Code

protected function findWeightsToggle($expected_text) {
  $toggle = $this
    ->getSession()
    ->getPage()
    ->findButton($expected_text);
  $this
    ->assertNotEmpty($toggle);
  return $toggle;
}