public function UITestBase::randomView in Drupal 10
Same name and namespace in other branches
- 8 core/modules/views_ui/tests/src/Functional/UITestBase.php \Drupal\Tests\views_ui\Functional\UITestBase::randomView()
- 9 core/modules/views_ui/tests/src/Functional/UITestBase.php \Drupal\Tests\views_ui\Functional\UITestBase::randomView()
A helper method which creates a random view.
File
- core/
modules/ views_ui/ tests/ src/ Functional/ UITestBase.php, line 56
Class
- UITestBase
- Provides a base class for testing the Views UI.
Namespace
Drupal\Tests\views_ui\FunctionalCode
public function randomView(array $view = []) {
// Create a new view in the UI.
$default = [];
$default['label'] = $this
->randomMachineName(16);
$default['id'] = strtolower($this
->randomMachineName(16));
$default['description'] = $this
->randomMachineName(16);
$default['page[create]'] = TRUE;
$default['page[path]'] = $default['id'];
$view += $default;
$this
->drupalGet('admin/structure/views/add');
$this
->submitForm($view, 'Save and edit');
return $default;
}