WebformElementAttributesTest.php in Webform 8.5
File
tests/src/Functional/Element/WebformElementAttributesTest.php
View source
<?php
namespace Drupal\Tests\webform\Functional\Element;
class WebformElementAttributesTest extends WebformElementBrowserTestBase {
protected static $testWebforms = [
'test_element_attributes',
];
public function testAttributes() {
$this
->drupalPostForm('/webform/test_element_attributes', [], 'Submit');
$this
->assertRaw("webform_element_attributes:\n class:\n - one\n - two\n - four\n style: 'color: red'\n custom: test");
}
}