public function ViewsFormMultipleTest::testViewsFormMultiple in Drupal 8
Same name and namespace in other branches
- 9 core/modules/views/tests/src/Functional/ViewsFormMultipleTest.php \Drupal\Tests\views\Functional\ViewsFormMultipleTest::testViewsFormMultiple()
Tests the a page with multiple View forms in it.
File
- core/
modules/ views/ tests/ src/ Functional/ ViewsFormMultipleTest.php, line 49
Class
- ViewsFormMultipleTest
- Tests a page with multiple Views forms.
Namespace
Drupal\Tests\views\FunctionalCode
public function testViewsFormMultiple() {
// Get the test page.
$this
->drupalGet('views_test_form_multiple');
$this
->assertText('Test base form ID with Views forms and arguments.');
// Submit the forms, validate argument returned in message set by handler.
// @note There is not a way to specify a specific index for a submit button. So
// the row index returned is always the last occurrence.
$this
->getSession()
->getPage()
->pressButton('edit-field-form-button-test-4--2');
$this
->assertText('The test button at row 4 for test_form_multiple (default) View with args: arg2 was submitted.');
$this
->getSession()
->getPage()
->pressButton('edit-field-form-button-test-4');
$this
->assertText('The test button at row 4 for test_form_multiple (default) View with args: arg1 was submitted.');
}