diff --git a/plugins/woocommerce/changelog/51379-51134-product-attribute-placeholder-change b/plugins/woocommerce/changelog/51379-51134-product-attribute-placeholder-change
new file mode 100644
index 00000000000..35d09da84a8
--- /dev/null
+++ b/plugins/woocommerce/changelog/51379-51134-product-attribute-placeholder-change
@@ -0,0 +1,4 @@
+Significance: patch
+Type: fix
+Comment: Changed Product attributes placeholder to e.g. length or weight
+
diff --git a/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-attribute-inner.php b/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-attribute-inner.php
index ef38a24cb54..94112796bb9 100644
--- a/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-attribute-inner.php
+++ b/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-attribute-inner.php
@@ -20,7 +20,7 @@ if ( ! defined( 'ABSPATH' ) ) {
get_name() ) ); ?>
-
+
diff --git a/plugins/woocommerce/tests/e2e-pw/tests/merchant/product-create-simple.spec.js b/plugins/woocommerce/tests/e2e-pw/tests/merchant/product-create-simple.spec.js
index 77b8a6ebefa..46934a82a1d 100644
--- a/plugins/woocommerce/tests/e2e-pw/tests/merchant/product-create-simple.spec.js
+++ b/plugins/woocommerce/tests/e2e-pw/tests/merchant/product-create-simple.spec.js
@@ -112,7 +112,7 @@ for ( const productType of Object.keys( productData ) ) {
.getByRole( 'link', { name: 'Attributes' } )
.click();
await page
- .getByPlaceholder( 'f.e. size or color' )
+ .getByPlaceholder( 'e.g. length or weight' )
.fill( attributeName );
await page
.getByPlaceholder( 'Enter some descriptive text.' )
@@ -183,7 +183,7 @@ for ( const productType of Object.keys( productData ) ) {
.getByPlaceholder( '0' )
.fill( productData[ productType ].shipping.weight );
await page
- .getByPlaceholder( 'Length' )
+ .getByPlaceholder( 'Length', { exact: true } )
.fill( productData[ productType ].shipping.length );
await page
.getByPlaceholder( 'Width' )
diff --git a/plugins/woocommerce/tests/e2e-pw/tests/merchant/products/add-variable-product/create-product-attributes.spec.js b/plugins/woocommerce/tests/e2e-pw/tests/merchant/products/add-variable-product/create-product-attributes.spec.js
index 77db0953f5c..9be4189e4b9 100644
--- a/plugins/woocommerce/tests/e2e-pw/tests/merchant/products/add-variable-product/create-product-attributes.spec.js
+++ b/plugins/woocommerce/tests/e2e-pw/tests/merchant/products/add-variable-product/create-product-attributes.spec.js
@@ -39,8 +39,9 @@ test.describe( 'Add product attributes', { tag: '@gutenberg' }, () => {
} );
test( 'can add custom product attributes', async ( { page } ) => {
- const textbox_attributeName =
- page.getByPlaceholder( 'f.e. size or color' );
+ const textbox_attributeName = page.getByPlaceholder(
+ 'e.g. length or weight'
+ );
const textbox_attributeValues = page.getByPlaceholder(
'Enter options for customers to choose from'
);