mirror of
https://github.com/bringout/oca-ocb-mail.git
synced 2026-04-21 06:22:01 +02:00
19.0 vanilla
This commit is contained in:
parent
5df8c07b59
commit
daa394e8b0
2114 changed files with 564841 additions and 299642 deletions
|
|
@ -0,0 +1,65 @@
|
|||
import { registry } from "@web/core/registry";
|
||||
import { stepUtils } from "@web_tour/tour_utils";
|
||||
|
||||
registry.category('web_tour.tours').add('mailing_campaign', {
|
||||
url: '/odoo',
|
||||
steps: () => [
|
||||
stepUtils.showAppsMenuItem(),
|
||||
{
|
||||
content: 'Select the "Email Marketing" app',
|
||||
trigger: '.o_app[data-menu-xmlid="mass_mailing.mass_mailing_menu_root"]',
|
||||
run: "click",
|
||||
},
|
||||
{
|
||||
content: 'Select "Campaings" Navbar item',
|
||||
trigger: '.o_nav_entry[data-menu-xmlid="mass_mailing.menu_email_campaigns"]',
|
||||
run: "click",
|
||||
},
|
||||
{
|
||||
content: 'Select "Newsletter" campaign',
|
||||
trigger: '.o_kanban_record:contains("Newsletter")',
|
||||
run: "click",
|
||||
},
|
||||
{
|
||||
content: 'Add a line (create new mailing)',
|
||||
trigger: '.o_field_x2many_list_row_add a',
|
||||
run: "click",
|
||||
},
|
||||
{
|
||||
content: 'Pick the basic theme',
|
||||
trigger: ".o_mailing_template_preview_wrapper [data-name='basic']",
|
||||
run: "click",
|
||||
},
|
||||
{
|
||||
trigger: ":iframe .o_mass_mailing_value .o_layout",
|
||||
},
|
||||
{
|
||||
content: 'Fill in Subject',
|
||||
trigger: '#subject_0',
|
||||
run: "edit TestFromTour",
|
||||
},
|
||||
{
|
||||
content: 'Fill in Mailing list',
|
||||
trigger: '#contact_list_ids_0',
|
||||
run: "edit Newsletter",
|
||||
},
|
||||
{
|
||||
content: 'Pick "Newsletter" option',
|
||||
trigger: '.o_input_dropdown a:contains(Newsletter)',
|
||||
run: "click",
|
||||
},
|
||||
{
|
||||
content: 'Save form',
|
||||
trigger: ".modal .o_form_button_save:contains(Save & Close)",
|
||||
run: "click",
|
||||
},
|
||||
{
|
||||
trigger: "body:not(:has(.modal))",
|
||||
},
|
||||
{
|
||||
content: 'Check that newly created record is on the list',
|
||||
trigger: '[name="mailing_mail_ids"] td[name="subject"]:contains("TestFromTour")',
|
||||
},
|
||||
...stepUtils.saveForm(),
|
||||
],
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue