protected function ParagraphsFeaturesDeleteConfirmationTest::disableDeleteConfirmation in Paragraphs Features 2.x
Same name and namespace in other branches
- 8 tests/src/FunctionalJavascript/ParagraphsFeaturesDeleteConfirmationTest.php \Drupal\Tests\paragraphs_features\FunctionalJavascript\ParagraphsFeaturesDeleteConfirmationTest::disableDeleteConfirmation()
Disable the delete confirmation setting.
1 call to ParagraphsFeaturesDeleteConfirmationTest::disableDeleteConfirmation()
- ParagraphsFeaturesDeleteConfirmationTest::testDeleteConfirmation in tests/src/ FunctionalJavascript/ ParagraphsFeaturesDeleteConfirmationTest.php 
- Test display of delete confirmation.
File
- tests/src/ FunctionalJavascript/ ParagraphsFeaturesDeleteConfirmationTest.php, line 206 
Class
- ParagraphsFeaturesDeleteConfirmationTest
- Test display delete confirmation.
Namespace
Drupal\Tests\paragraphs_features\FunctionalJavascriptCode
protected function disableDeleteConfirmation($content_type) {
  $currentUrl = $this
    ->getSession()
    ->getCurrentUrl();
  $this
    ->toggleDeleteConfirmation($content_type, 'uncheck');
  $this
    ->drupalGet($currentUrl);
}