59 lines
2.1 KiB
JavaScript
59 lines
2.1 KiB
JavaScript
|
/** @odoo-module **/
|
||
|
|
||
|
import { registry } from "@web/core/registry";
|
||
|
import { stepUtils } from "@web_tour/tour_service/tour_utils";
|
||
|
|
||
|
registry.category("web_tour.tours").add('mailing_editor', {
|
||
|
url: '/web',
|
||
|
test: true,
|
||
|
steps: () => [stepUtils.showAppsMenuItem(), {
|
||
|
trigger: '.o_app[data-menu-xmlid="mass_mailing.mass_mailing_menu_root"]',
|
||
|
}, {
|
||
|
trigger: 'button.o_list_button_add',
|
||
|
}, {
|
||
|
trigger: 'div[name="contact_list_ids"] .o_input_dropdown input[type="text"]',
|
||
|
}, {
|
||
|
trigger: 'div[name="contact_list_ids"] .ui-state-active'
|
||
|
}, {
|
||
|
content: 'choose the theme "empty" to edit the mailing with snippets',
|
||
|
trigger: '[name="body_arch"] iframe #empty',
|
||
|
}, {
|
||
|
content: 'wait for the editor to be rendered',
|
||
|
trigger: '[name="body_arch"] iframe .o_editable[data-editor-message="DRAG BUILDING BLOCKS HERE"]',
|
||
|
run: () => {},
|
||
|
}, {
|
||
|
content: 'drag the "Title" snippet from the design panel and drop it in the editor',
|
||
|
trigger: '[name="body_arch"] iframe #email_designer_default_body [name="Title"] .oe_snippet_thumbnail',
|
||
|
run: function (actions) {
|
||
|
actions.drag_and_drop_native('[name="body_arch"] iframe .o_editable', this.$anchor);
|
||
|
}
|
||
|
}, {
|
||
|
content: 'wait for the snippet menu to finish the drop process',
|
||
|
trigger: '[name="body_arch"] iframe #email_designer_header_elements:not(:has(.o_we_already_dragging))',
|
||
|
run: () => {}
|
||
|
}, {
|
||
|
content: 'verify that the title was inserted properly in the editor',
|
||
|
trigger: '[name="body_arch"] iframe .o_editable h1',
|
||
|
run: () => {},
|
||
|
}, {
|
||
|
trigger: 'button.o_form_button_save',
|
||
|
}, {
|
||
|
content: 'verify that the save failed (since the field "subject" was not set and it is required)',
|
||
|
trigger: 'label.o_field_invalid',
|
||
|
run: () => {},
|
||
|
}, {
|
||
|
content: 'verify that the edited mailing body was not lost during the failed save',
|
||
|
trigger: '[name="body_arch"] iframe .o_editable h1',
|
||
|
run: () => {},
|
||
|
}, {
|
||
|
trigger: 'input#subject_0',
|
||
|
run: 'text TestFromTour',
|
||
|
}, {
|
||
|
trigger: '.o_form_view', // blur previous input
|
||
|
},
|
||
|
...stepUtils.saveForm(),
|
||
|
{
|
||
|
trigger: 'iframe .o_editable',
|
||
|
run: () => {},
|
||
|
}]});
|