ClaroTableDragTest.php in Drupal 8
File
core/tests/Drupal/FunctionalJavascriptTests/Theme/ClaroTableDragTest.php
View source
<?php
namespace Drupal\FunctionalJavascriptTests\Theme;
use Drupal\FunctionalJavascriptTests\TableDrag\TableDragTest;
class ClaroTableDragTest extends TableDragTest {
protected $defaultTheme = 'claro';
protected function findWeightsToggle($expected_text) {
$toggle = $this
->getSession()
->getPage()
->findLink($expected_text);
$this
->assertNotEmpty($toggle);
return $toggle;
}
}