
* Metadata for fulfillment * Metadata for fulfillment * Trigger deploy * Fix removing priv metadata * Remove blinks * tests for adding, deleteing and updating public and prvate metadata for fullfilled orders (#3684) --------- Co-authored-by: wojteknowacki <124166231+wojteknowacki@users.noreply.github.com> Co-authored-by: wojteknowacki <wojciech.nowacki@saleor.io>
14 lines
607 B
JavaScript
14 lines
607 B
JavaScript
export const METADATA_FORM = {
|
|
metadataForm:
|
|
"[data-test-id='metadata-editor'][data-test-is-private='false']",
|
|
privateMetadataForm:
|
|
"[data-test-id='metadata-editor'][data-test-is-private='true']",
|
|
addFieldButton: "[data-test-id='add-field']",
|
|
nameInput: "[name*='name']",
|
|
valueField: "[name*='value']",
|
|
metaExpandButton: "[data-test-id='expand']",
|
|
metaDeletedButton: "[data-test-id='delete-field-0']",
|
|
privateMetaSection: "[data-test-is-private='true']",
|
|
publicMetaSection: "[data-test-is-private='false']",
|
|
fulfillmentMetaSection: "[data-test-id='fulfilled-order-section']",
|
|
};
|