public function TableDragTest::testTableDragChangedWarning in Drupal 9
Same name and namespace in other branches
- 8 core/tests/Drupal/FunctionalJavascriptTests/TableDrag/TableDragTest.php \Drupal\FunctionalJavascriptTests\TableDrag\TableDragTest::testTableDragChangedWarning()
Tests the warning that appears upon making changes to a tabledrag table.
File
- core/
tests/ Drupal/ FunctionalJavascriptTests/ TableDrag/ TableDragTest.php, line 295
Class
- TableDragTest
- Tests draggable table.
Namespace
Drupal\FunctionalJavascriptTests\TableDragCode
public function testTableDragChangedWarning() {
$this
->drupalGet('tabledrag_test');
// By default no text is visible.
$this
->assertSession()
->pageTextNotContains('You have unsaved changes.');
// Try to make a non-allowed action, like moving further down the last row.
// No changes happen, so no message should be shown.
$this
->moveRowWithKeyboard($this
->findRowById(5), 'down');
$this
->assertSession()
->pageTextNotContains('You have unsaved changes.');
// Make a change. The message will appear.
$this
->moveRowWithKeyboard($this
->findRowById(5), 'right');
$this
->assertSession()
->pageTextContainsOnce('You have unsaved changes.');
// Make another change, the text will stay visible and appear only once.
$this
->moveRowWithKeyboard($this
->findRowById(2), 'up');
$this
->assertSession()
->pageTextContainsOnce('You have unsaved changes.');
}