2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
@@ -132,7 +132,7 @@ class FieldUITestCase extends DrupalWebTestCase {
// Check that the list of options respects entity type restrictions on
// fields. The 'comment' field is restricted to the 'comment' entity type
// and should not appear in the list.
$this->assertFalse($this->xpath('//select[@id="edit--add-existing-field-field-name"]//option[@value="comment"]'),t('The list of options respects entity type restrictions.'));
$this->assertFalse($this->xpath('//select[@id="edit-add-existing-field-field-name"]//option[@value="comment"]'),t('The list of options respects entity type restrictions.'));
// Add a new field based on an existing field.
$edit=array(
...
...
@@ -272,7 +272,7 @@ class FieldUITestCase extends DrupalWebTestCase {
// Check that the field type is not available in the 'add new field' row.
$this->drupalGet($bundle_path);
$this->assertFalse($this->xpath('//select[@id="edit--add-new-field-type"]//option[@value="hidden_test_field"]'),t("The 'add new field' select respects field types 'no_ui' property."));
$this->assertFalse($this->xpath('//select[@id="edit-add-new-field-type"]//option[@value="hidden_test_field"]'),t("The 'add new field' select respects field types 'no_ui' property."));
// Create a field and an instance programmatically.
$field_name='hidden_test_field';
...
...
@@ -296,7 +296,7 @@ class FieldUITestCase extends DrupalWebTestCase {