19.0 vanilla

This commit is contained in:
Ernad Husremovic 2026-03-09 09:32:39 +01:00
parent 38c6088dcc
commit d9452d2060
243 changed files with 30797 additions and 10815 deletions

View file

@ -1,106 +1,130 @@
odoo.define('test_website_modules.tour.configurator_flow', function (require) {
'use strict';
import { registry } from "@web/core/registry";
const tour = require('web_tour.tour');
const wTourUtils = require('website.tour_utils');
tour.register('configurator_flow', {
test: true,
url: '/web#action=website.action_website_configuration',
},
[
{
content: "click on create new website",
trigger: 'button[name="action_website_create_new"]',
}, {
content: "insert website name",
trigger: '[name="name"] input',
run: 'text Website Test',
}, {
content: "validate the website creation modal",
trigger: 'button.btn-primary',
},
// Configurator first screen
{
content: "click next",
trigger: 'button.o_configurator_show',
timeout: 20000, /* previous step create a new website, this could take a long time */
},
// Description screen
{
content: "select a website type",
trigger: 'a.o_change_website_type',
}, {
content: "insert a website industry",
trigger: '.o_configurator_industry input',
run: 'text ab',
}, {
content: "select a website industry from the autocomplete",
trigger: '.o_configurator_industry ul li a',
}, {
content: "select an objective",
trigger: '.o_configurator_purpose_dd a',
}, {
content: "choose from the objective list",
trigger: 'a.o_change_website_purpose',
},
// Palette screen
{
content: "chose a palette card",
trigger: '.palette_card',
},
// Features screen
{
content: "select Pricing",
trigger: '.card:contains("Pricing")',
}, {
content: "Events should be selected (module already installed)",
extra_trigger: '.card.border-success:contains("Pricing")',
trigger: '.card.card_installed:contains("Events")',
run: function () {}, // it's a check
}, {
content: "Slides should be selected (module already installed)",
trigger: '.card.card_installed:contains("eLearning")',
run: function () {}, // it's a check
}, {
content: "Success Stories (Blog) and News (Blog) should be selected (module already installed)",
extra_trigger: '.card.card_installed:contains("Success Stories")',
trigger: '.card.card_installed:contains("News")',
run: function () {}, // it's a check
}, {
content: "Click on build my website",
trigger: 'button.btn-primary',
}, {
content: "Loader should be shown",
trigger: '.o_website_loader_container',
run: function () {}, // it's a check
}, {
content: "Wait untill the configurator is finished",
trigger: '#oe_snippets.o_loaded',
timeout: 30000,
},
...wTourUtils.clickOnSave(),
{
content: "check menu and footer links are correct",
trigger: 'body:not(.editor_enable)', // edit mode left
run: function () {
const $iframe = this.$anchor.find('iframe.o_iframe:not(.o_ignore_in_tour)');
for (const menu of ['Home', 'Events', 'Courses', 'Pricing', 'News', 'Success Stories', 'Contact us']) {
if (!$iframe.contents().find(`#top_menu a:contains(${menu})`).length) {
console.error(`Missing ${menu} menu. It should have been created by the configurator.`);
}
}
for (const url of ['/', '/event', '/slides', '/pricing', '/blog/', '/blog/', '/contactus']) {
if (!$iframe.contents().find(`#top_menu a[href^='${url}']`).length) {
console.error(`Missing ${url} menu URL. It should have been created by the configurator.`);
}
}
for (const link of ['Privacy Policy', 'Contact us']) {
if (!$iframe.contents().find(`#footer ul a:contains(${link})`).length) {
console.error(`Missing ${link} footer link. It should have been created by the configurator.`);
}
}
registry.category("web_tour.tours").add("configurator_flow", {
url: "/odoo/action-website.action_website_configuration",
steps: () => [
{
content: "click on create new website",
trigger: 'button[name="action_website_create_new"]',
run: "click",
},
},
]);
{
content: "insert website name",
trigger: '[name="name"] input',
run: "edit Website Test",
},
{
content: "validate the website creation modal",
trigger: 'button.btn-primary:contains("Create")',
run: "click",
expectUnloadPage: true,
},
// Configurator first screen
{
content: "click next",
trigger: "button.o_configurator_show",
run: "click",
timeout: 20000, /* previous step create a new website, this could take a long time */
},
// Description screen
{
content: "select a website type",
trigger: "button.o_change_website_type",
run: "click",
},
{
content: "insert a website industry",
trigger: ".o_configurator_industry input",
run: "edit ab",
},
{
content: "select a website industry from the autocomplete",
trigger: ".o_configurator_industry ul li a",
run: "click",
},
{
content: "choose from the objective list",
trigger: "button.o_change_website_purpose",
run: "click",
},
// Palette screen
{
content: "chose a palette card",
trigger: ".palette_card",
run: "click",
},
// Features screen
{
content: "select Pricing",
trigger: '.card:contains("Pricing")',
run: "click",
},
{
trigger: '.card.border-success:contains("Pricing")',
},
{
content: "Events should be selected (module already installed)",
trigger: '.card.card_installed:contains("Events")',
},
{
content: "Slides should be selected (module already installed)",
trigger: '.card.card_installed:contains("eLearning")',
},
{
trigger: '.card.card_installed:contains("Success Stories")',
},
{
content:
"Success Stories (Blog) and News (Blog) should be selected (module already installed)",
trigger: '.card.card_installed:contains("News")',
},
{
content: "Click on build my website",
trigger: "button.btn-primary",
run: "click",
},
// Online catalog screen
{
content: "Choose a shop page style",
trigger: ".o_configurator_screen:contains(online catalog) .button_area",
run: "click",
},
// Product page Screen
{
content: "Choose a product page style",
trigger: ".o_configurator_screen:contains(product page) .button_area",
run: "click",
},
{
content: "Loader should be shown",
trigger: ".o_website_loader_container",
expectUnloadPage: true,
},
{
content: "Wait until the configurator is finished",
trigger: ":iframe [data-view-xmlid='website.homepage']",
timeout: 30000,
},
{
content: "check menu and footer links are correct",
trigger: "body:not(.editor_enable)", // edit mode left
},
...["Contact us", "Privacy Policy"].map((menu) => ({
content: `Check footer menu ${menu} is there`,
trigger: `:iframe footer a:contains(${menu})`,
})),
...["Home", "Events", "Courses", "Pricing", "News", "Success Stories", "Contact us"].map(
(menu) => ({
content: `Check menu ${menu} is there`,
trigger: `:iframe .top_menu a:contains(${menu}):not(:visible)`,
})
),
...["/", "/event", "/slides", "/pricing", "/blog/", "/blog/", "/contactus"].map((url) => ({
content: `Check url ${url} is there`,
trigger: `:iframe .top_menu a[href^='${url}']:not(:visible)`,
})),
{
trigger: ":iframe h1:contains(your journey starts here)",
},
],
});