Updated Release Testing Instructions WooCommerce 6.7 (markdown)
parent
9e26a41047
commit
efb4005aa6
|
@ -349,34 +349,7 @@ Note: please find a [recording](https://user-images.githubusercontent.com/278432
|
|||
### WC Admin ([#32728](https://github.com/woocommerce/woocommerce/pull/32728), [#33064](https://github.com/woocommerce/woocommerce/pull/33064), [#33241](https://github.com/woocommerce/woocommerce/pull/33241), [#33270](https://github.com/woocommerce/woocommerce/pull/33270), [#33434](https://github.com/woocommerce/woocommerce/pull/33434))
|
||||
**_Workflow: WooCommerce Core_**
|
||||
|
||||
|
||||
**Scenario 1: Admins should be able to add different values for `name` and `id` HTML input attributes in wc-admin-settings**
|
||||
1. Create two custom fields through 'woocommerce_account_settings' filter, and define "field_name" and "value" pairs as below:
|
||||
```
|
||||
array(
|
||||
'title' => __( '[FR] Digit Code : Error message', 'woocommerce' ),
|
||||
'id' => 'number_error_message_fr',
|
||||
'field_name' => 'number_error_message[fr]',
|
||||
'value' => get_option('number_error_message')['fr'] ?? '',
|
||||
'default' => 'Le numéro doit contenir 6 chiffres',
|
||||
'type' => 'text',
|
||||
'autoload' => false,
|
||||
),
|
||||
array(
|
||||
'title' => __( '[EN] Digit Code : Error message', 'woocommerce' ),
|
||||
'id' => 'number_error_message_en',
|
||||
'field_name' => 'number_error_message[en]',
|
||||
'value' => get_option('number_error_message')['en'] ?? '',
|
||||
'default' => 'The number must contain 6 digits',
|
||||
'type' => 'text',
|
||||
'autoload' => false,
|
||||
),
|
||||
```
|
||||
2. Check if 'number_error_message' option is properly set when the form is submitted (Should be an array of values from form inputs)
|
||||
3. There should be no "Array to string conversion" error when redisplaying the form
|
||||
|
||||
|
||||
**Scenario 2: Order/product count should be correct even when order status changes or product stock is set to zero**
|
||||
**Scenario 1: Order/product count should be correct even when order status changes or product stock is set to zero**
|
||||
1. Create a couple of products and orders
|
||||
2. Hide the task list
|
||||
3. The Orders and Stock panel should show up, and notice how two request were made to the WC api (one to `/wc/v3/products` and one to `/wc/v3/orders`)
|
||||
|
@ -384,19 +357,19 @@ array(
|
|||
5. If you enable stock management on a product and set stock to zero, the stock panel should show products
|
||||
|
||||
|
||||
**Scenario 3: Navigation nudge note should not be added when while using the previous WC navigation**
|
||||
**Scenario 2: Navigation nudge note should not be added when while using the previous WC navigation**
|
||||
1. Do not enable the new navigation
|
||||
2. Visit the homescreen
|
||||
3. Make sure the navigation note ("You now have access to the WooCommerce navigation") is not added
|
||||
|
||||
|
||||
**Scenario 4: Navigation nudge note should not be added when while using the previous WC navigation**
|
||||
**Scenario 3: Navigation nudge note should not be added when while using the previous WC navigation**
|
||||
1. Make sure `woocommerce_show_marketplace_suggestions` is set to `no` in **wp_options** table
|
||||
2. Navigate to http://your-site/wp-admin/admin.php?page=wc-admin&task=marketing
|
||||
3. Confirm the Pinterest has a "Built by WooCommerce" label
|
||||
|
||||
|
||||
**Scenario 5: Admin should be able to see the Payments settings without any issue**
|
||||
**Scenario 4: Admin should be able to see the Payments settings without any issue**
|
||||
1. Install and activate the ["Paytm Payments"](https://wordpress.org/plugins/paytm-payments/) plugin
|
||||
2. Go to WC > Settings > Payments
|
||||
3. No fatal errors are found
|
||||
|
|
Loading…
Reference in New Issue